ホームページ  >  記事  >  バックエンド開発  >  php登陆小疑点

php登陆小疑点

WBOY
WBOYオリジナル
2016-06-13 10:08:49880ブラウズ

php登陆小问题
login.php

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><script type="text/javascript">    function check()    {        var un = document.getElementById("username").value;        var up = document.getElementById("userpass").value;        if(un==""){alert("null"); return false;}        if(up==""){alert("null");return false;}            }</script>
用户名:
密 码:

show.php
PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php include("conn.php"); ?><?php if($_POST["submit"])    {        echo $sql ="select * from users where username='".$_POST["username"]."' and userpass='".$_POST["userpass"]."'";        $result=mysql_query($sql);        //echo count($result);                if($result)        {            echo "登陆成功";        }else        {            echo "不要捣乱";        }    }?>


------解决方案--------------------
if($result) $result不为0则if时默认为true
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。