Jump to content

[SOLVED] An update query that doesn't update.


Flames

Recommended Posts

this is the part that of the code that uses an update, be warned if you require the whole code, its around 500 lines.

$date = date("Y-m-d");
$update_sql = "UPDATE News SET name='{$_POST['edit_form_title']}', message='{$_POST['edit_form_message']}', message2='{$_POST['edit_form_long_message']}',
poster='{$_POST['edit_form_poster']}', date='{$_POST['edit_form_date']}', edit_date='$date' WHERE id='$id'";
mysql_query($update_sql) or die(mysql_error());
/* if(!$update_query)
{
echo "Error doing your edit";
}
else
{
echo "The news topic " . $id . " was edited successfully. <br /> go back to the <a class=\"link1\" href=\"edit_news.php\">edit news page</a>";
}*/

note the part thats commented out, because before $update_query was the mysql_query. im not getting any errors just its not updating.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.