Home > Backend Development > PHP Tutorial > PHP simulates common database operation effects

PHP simulates common database operation effects

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-29 09:16:19
Original
1252 people have browsed it

test.php

<?<span>php
</span><span>header</span>("Content-type:text/html;charset='utf8'"<span>);
</span><span>error_reporting</span>(<span>E_ALL</span><span>);

</span><span>echo</span> "模拟数据库常用操作效果<br>"<span>;
</span><span>echo</span> "<a href='check.php?action=add'>执行增加操作</a><br>"<span>;
</span><span>echo</span> "<a href='check.php?action=del'>执行删除操作</a><br>"<span>;
</span><span>echo</span> "<a href='check.php?action=search'>执行查找操作</a><br>"<span>;
</span><span>echo</span> "<a href='check.php?action=update'>执行更新操作</a><br>";
Copy after login

check.php

<?<span>php
    </span><span>if</span>(<span>isset</span>(<span>$_GET</span>['action'<span>])){
        </span><span>switch</span>(<span>$_GET</span>['action'<span>]){
            </span><span>case</span> "add":
                <span>echo</span> "<script>alert('add');</script>"<span>;
                </span><span>break</span><span>;
            </span><span>case</span> "del":
                <span>echo</span> "<script>alert('del');</script>"<span>;
                </span><span>break</span><span>;
            </span><span>case</span> "search":
                <span>echo</span> "<script>alert('search');</script>"<span>;
                </span><span>break</span><span>;
            </span><span>case</span> "update"<span>;
                </span><span>echo</span> "<script>alert('update');</script>"<span>;
                </span><span>break</span><span>;
            </span><span>default</span>:
                <span>echo</span> "<script>alert('error');</script>"<span>;
                </span><span>break</span><span>;
        }
        </span><span>//</span><span> echo "<script>window.location = 'test.php';</script>";</span><span>echo</span> "<script>history.go(-1);</script>"<span>;
    }</span>
Copy after login

The above introduces the common operation effects of PHP simulation database, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Ajax submit script submission error
From 1970-01-01 08:00:00
0
0
0
How to use the created hook in the setup script
From 1970-01-01 08:00:00
0
0
0
javascript - script tag async attribute
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template