0

ユーザーを更新するために作成した PHP スクリプトは MySQL データベースですが、更新されません。ただし、成功したと表示されます。スクリプトは次のとおりです。

//This is the list script
//Index.php script

<?php
$host="localhost"; // Host name
$username="username"; // Mysql username
$password="password"; // Mysql password
$db_name="database"; // Database name
$tbl_name="users"; // Table name

// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
?>

<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<table width="400" border="1" cellspacing="0" cellpadding="3">
<tr>
<td colspan="4"><strong>Users</strong> </td>
</tr>

<tr>
<td align="center"><strong>Username</strong></td>
<td align="center"><strong>Role</strong></td>
<td align="center"><strong>Channels</strong></td>
<td align="center"><strong>EMail</strong></td>
<td align="center"><strong>Update</strong></td>
<td align="center"><strong>Delete</strong></td>
</tr>

 <?php
 while($rows=mysql_fetch_array($result)){
 ?>

<tr>
<td><?php echo $rows['Username']; ?></td>
<td><?php echo $rows['Role']; ?></td>
<td><?php echo $rows['Channels']; ?></td>
<td><?php echo $rows['EMail']; ?></td>


<td align="center"><a href="update.php?id=<?php echo $rows['ID']; ?>">Update</a></td>
<td align="center"><a href="delete_ac.php?id=<?php echo $rows['ID']; ?>">Delete</a>  
</td>
</tr>

<?php
}
?>

</table>
</td>
</tr>
</table>

<?php
mysql_close();
?>

これは、ユーザー ID を取得してユーザーの更新を可能にする update users スクリプト
です。update.php スクリプト

<?php
$host="localhost"; // Host name
$username="username"; // Mysql username
$password="password"; // Mysql password
$db_name="database"; // Database name
$tbl_name="users"; // Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

// get value of id that sent from address bar
$id=$_GET['id'];

// Retrieve data from database
$sql="SELECT * FROM $tbl_name WHERE id='$id'";
$result=mysql_query($sql);

$rows=mysql_fetch_array($result);
?>

<table width="400" border="0" cellspacing="10" cellpadding="0">
<tr>
<form name="form1" method="post" action="update_ac.php">
<td>
<table width="100%" border="10" cellspacing="1" cellpadding="10">

<tr>
<td colspan="3"><strong>Update User</strong> </td>
</tr>
<center>
<tr>
<td align="center"><strong>Username</strong></td>
<td align="center"><strong>Password</strong></td>
<td align="center"><strong>Role</strong></td>
<td align="center"><strong>Channels</strong></td>
<td align="center"><strong>EMail</strong></td>
</tr>
</center>
<tr>
<td align="center">
<input name="username" type="text" id="Username" value="<?php echo 
$rows['Username'];   
?>" size="15">
</td>

<td align="center">
<input name="password" type="Password" id="Password" value="<?php echo      
$rows['Password']; ?>" size="15">
</td>

<td>
<input name="role" type="text" id="Role" value="<?php echo $rows['Role']; ?>" size="1">
</td>

<td>
<input name="channels" type="text" id="Channels" value="<?php echo $rows['Channels']; 
?>" size="10">
</td>


<td>
<input name="EMail" type="text" id="EMail" value="<?php echo $rows['EMail']; ?>"  
size="25">
</td>

<tr>
<td>
<input name="id" type="hidden" id="ID" value="<?php echo $rows['ID']; ?>">
</td>
<td align="center">
<input type="submit" name="Submit" value="Submit">
</td>

</tr>
</table>
</td>
</form>
</tr>
</table>

<?php
// close connection
mysql_close();
?>

これは更新を実行するスクリプトです。私の問題はこのスクリプトの
ここにあると思いますが、どこにあるのかわかりません。while ループが欠落している可能性があると思います。

update_ac.php スクリプト

<?php
$host="localhost"; // Host name
$username="username"; // Mysql username
$password="password"; // Mysql password
$db_name="database"; // Database name
$tbl_name="users"; // Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");


$id = $_POST['ID'];
$Username = $_POST['Username'];
$Password = $_POST['Password'];
$Role = $_POST['Role'];
$Channels = $_POST['Channels'];
$EMail = $_POST['EMail'];


// update data in mysql database
$sql = "UPDATE $tbl_name SET Username='$Username', Password='$Password',    
Role='$Role', Channels='$Channels', EMail='$EMail' WHERE id='$id'";
$result = mysql_query($sql);

// if successfully updated.
if($result)
{

echo "Successful";
echo "<BR>";
echo "<a href='index.php'>View result</a>";

}

else
{
echo "ERROR";
}

?> 
4

3 に答える 3

3

更新を行う前にデータをサニタイズする必要があります。さらに、コメンターが mysqli または PDO について述べたことも確認してください。ただし、クエリ行を次のように変更すると、$result = mysql_query($sql) or die(mysql_error());何が問題なのかがわかります。

于 2012-10-15T22:09:07.320 に答える
3

他の回答で既に行われたすべての重要な考慮事項とは別に、スクリプトの実際のエラーについて、スクリプトに表示されるようにupdate.php、送信ボタンがあります。

<input type="submit" name="Submit" value="Submit">

しかし、要素で囲まれているとは思いません。<form>すべての<input>要素をフォームタグで囲んで、宛先スクリプトに送信できるようにする必要があります。このようなもの:

<form method="POST" action="update_ac.php">
// HERE ALL YOUR INPUT ELEMENTS
</form>
于 2012-10-15T22:13:57.213 に答える
0

mysql_query は、クエリが失敗した場合にのみ FALSE を返します。あなたの場合、クエリは失敗していませんが、0 行しか変更されていない可能性があります。そのために mysql_affected_rows() をチェックしてください (この場合、スクリプトは成功を報告しないはずです)。http://php.net/manual/en/function.mysql-query.phpのドキュメントを参照してください。

于 2012-10-15T22:17:49.290 に答える