私はSQLとPHPにかなり慣れていません。
簡単なログイン スクリプトを作成しようとしています。HTMLドキュメントにフォームがあり、必要な2つの変数に正しいデータを投稿することを証明しましたが、SQLを実行するとスクリプトが失敗します...
また、mysqlWorkbench で SQL をテストしたところ、必要な結果が得られました。
助けてください。
これが私のスクリプトです:
<?PHP
$odbc = mysql_connect('localhost', 'root', '') or die ("could not connect to database");
mysql_select_db('examresults', $odbc) or die("Could not find database");
// username and password sent from form
$username=$_POST['username'];
$password=$_POST['password'];
$sql='SELECT * FROM tuser where username = '.$username.' and password = '.$password.'';
$result = mysql_query($sql, $odbc) or die ("Error in SQL");
// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
//If result matched username and password, table row must only equal 1 row
if($count==1)
{
header("location:exammenu.php");
}
else
{
echo 'username and password do not match';
}
?>