ユーザーがユーザー名または電話番号でログインできるようにする必要があるという点で、PHP MySQL でログインフォームを作成しました。
私はこのコードを持っています:-
<form method="post" action="">
User name:<input type="text" name="uname" />
PWD:<input type="password" name="pwd" />
<input type="submit" name="sub" />
PHP コード:
<?php
include "config.php";
$uname = $_POST['uname'];
$pwd = $_POST['pwd'];
$query=mysql_query("select * from users where userId='$uname' and pwd ='$pwd' ");
if($query){
echo "login success":
}else
echo "login fail";
?>