Heim  >  Artikel  >  php教程  >  php模拟数据库常用操作效果,php模拟数据库

php模拟数据库常用操作效果,php模拟数据库

WBOY
WBOYOriginal
2016-06-13 08:55:08824Durchsuche

php模拟数据库常用操作效果,php模拟数据库

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>";

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>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn