3

単純なログイン フォームの作成で問題が発生しています。SQL が「解析エラー: 構文エラー、予期しない '$username' (T_VARIABLE) in C:\xampp\htdocs\Easy Grade 2000\login.php 6 行目」と表示される理由とその修正方法を説明できますか?

ありがとう

<?php

include 'connect.php'

// username and password sent from form 
$username = $_POST['u_name']; 
$password = $_POST['p_word']; 

$sql="SELECT * FROM $db_name WHERE u_name='$username' and p_word='$password'";
$result=mysql_query($sql);

// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row

if($count==1){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword"); 
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>
4

1 に答える 1

2

インクルードの後のセミコロンを忘れました:

include 'connect.php';
                     ^---- :)
于 2012-11-16T02:21:32.193 に答える