Heim > Backend-Entwicklung > PHP-Tutorial > php模拟数据库常用操作效果,php模拟数据库_PHP教程

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

WBOY
Freigeben: 2016-07-13 09:44:03
Original
719 Leute haben es durchsucht

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>";
Nach dem Login kopieren

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>
Nach dem Login kopieren

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1051216.htmlTechArticlephp模拟数据库常用操作效果,php模拟数据库 test.php ? php header ("Content-type:text/html;charset='utf8'" ); error_reporting ( E_ALL ); echo "模拟数据库常用操作...
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage