0

此代码应该使用在编辑网页上所做的更改来更新数据库中已经存在的文章,但它不起作用。它显示当前文章,但是当我进行更改并单击“保存”时,没有任何变化。

mysql_select_db("scms", $con );  
$show_world="show_world";
define("IMG_URL", "http://localhost/project/show/show_home/images/");
define("ABS_PATH",dirname(__FILE__));
define("IMG_PATH",dirname(__FILE__)."/");
$id = $_GET['id'];
$sql = "select * FROM $show_world where id = $id";
$result=mysql_query($sql);
$row = mysql_fetch_array($result);
if(isset($_POST['save'])) {
    $id = $_POST['id'];
    $topic = $_POST['topic'];
    $author = $_POST['author'];
    $content = $_POST['content'];
    $picture = $_POST['picture'];
    $date = $_POST['date'];
    $sql = "UPDATE $show_world SET topic='".$topic."',author='".$author."', content='".$content."', date='".$date."' ";
4

1 回答 1

0

尝试像这样封闭表名的变量:

$sql = "UPDATE {$show_world} SET topic='".$topic.....

还有一件事:您的代码容易受到 sql 注入的影响!尝试转义用户输入,然后在数据库中更新它。

于 2012-04-22T10:02:42.077 回答