使用PHP编辑mySQL记录

时间:2010-11-09 16:02:09

标签: php html

以下PHP脚本的片段大部分都有用...除了$ rows [from_location_1]和$ rows ['to_location_1']没有显示所有数据这一事实。

数据包括建筑代码(字母),后跟空格,然后是楼层编号/房间编号。例如:NAC 1 / 200A。该脚本仅显示构建代码(NAC)

注意:声明:echo“$ rows [from_location_1]”;显示所有数据。

在尝试了所有我能想到并阅读的内容后,我感到非常难过......

任何关于导致它不显示所有数据的想法以及可能的解决方案都将非常感谢......

谢谢Chris

echo '<html>';
echo '<head><title> </title>';
echo '</head>';
echo '<body>';
echo '<form method=post action=xxx>';
echo '<table border=5>';
$rows= mysql_fetch_array($result);
echo '<tr>&lt;th>CIT Number&lt;/th>&lt;td>';
echo "&lt;input type=text disabled value=" . $rows['citnum'] . ">&lt;/td>&lt;/tr>";
echo '&lt;tr>&lt;th>Serial Number&lt;/th>&lt;td>';
echo "&lt;input type=text disabled value=" . $rows['sernum'] . ">&lt;/td>&lt;/tr>";
echo '&lt;tr>&lt;th>Move Date&lt;/th>&lt;td>';
echo "&lt;input type=text value=" . $rows['move_date_1'] . ">&lt;/td>&lt;/tr>";
echo '&lt;tr>&lt;th>From&lt;/th>&lt;td>';
echo "&lt;input type=text value=" . $rows[from_location_1] . ">&lt;/td>&lt;/tr>";
echo '&lt;tr>&lt;th>To&lt;/th>&lt;td>';
echo "&lt;input type=text value=" . $rows['to_location_1'] . ">&lt;/td>&lt;/tr>";
echo '&lt;tr>&lt;th>Comment&lt;/th>&lt;td>';
echo "&lt;input type=text value=" . $rows['comment_1'] . ">&lt;/td>&lt;/tr>";
echo '&lt;/td><td align="center">';
echo '&lt;/td>&lt;/tr>&lt;/table>';
echo '&lt;input type=submit value="Click To update">';
echo '&lt;/form>';
echo '&lt;/body>';
echo '&lt;/html>';
mysql_close($dbconnect);

1 个答案:

答案 0 :(得分:3)

来自数据库的echo语句在数据库的$行周围没有任何引号。您还应该转义来自数据库的值

更改

之类的行
echo "<input type=text value=" . $rows['comment_1'] . "></td></tr>";

echo "<input type=text value=\"" . htmlspecialchars($rows['comment_1']) . "\"></td></tr>";