我正在使用Simple Admin Panel, 我正在处理的方法是从数据库中选择数据并将其放入textarea并在textarea更新按钮后面, 当我更新textarea单击更新以执行查询以更新表 但是当我点击第一行的更新时,例如它只执行第三行,即使我点击了第一行更新按钮"图片附件"
<?php
include 'config.php';
echo '<link rel="stylesheet" href="style.css"type="text/css">';
$result = mysql_query("SELECT * FROM English");
while($row = mysql_fetch_array($result))
{
echo "<form action='' method='post'>";
echo "<table>";
echo "<tr>";
echo "<td><textarea rows='1' cols='1' name='txtid' readonly style='overflow:auto;resize:none'>" . $row['ID'] . "</textarea></td>";
echo "<td><textarea rows='4' cols='50' name='txtarea'>" . $row['Content'] . "</textarea></td>";
echo "<td><input type='submit' name='button' value='Update!'/></td>";
echo "</tr>";
}
echo "</table>";
echo "</form>";
if(isset($_POST['button'])){
$textarea =$_POST['txtarea'];
$id = $_POST['txtid'];
$sql = "UPDATE English SET Content='".$textarea."' WHERE ID='".$id."'";
echo $textarea; echo $id;
mysql_query( $sql, $conn );
}
mysql_close($conn);
?>
答案 0 :(得分:0)
那么, 更改了关闭括号的位置
之后 echo "</table>";
echo "</form>";
它解决了问题