I am not getting a blank page anymore but when I press Update it goes to
http://www.codeanswers.chatspeak.net/recordupdated.php
and says: Record Updated
but it did not update the record.
Here is my recordupdated.php script:
<?php
$ud_id=$_POST['ud_id'];
$ud_content=$_POST['ud_content'];
$username="chatspea";
$password="dylan4561";
$database="chatspea_contenteditor";
$db=mysql_connect(localhost,$username,$password) or die ("Can't connect");
mysql_select_db($database, $db) or die ("can't connect 2");
$query="UPDATE content SET '$ud_content' WHERE id='$ud_id'";
mysql_query($query);
echo "Record Updated";
?>
I think it might have to do with my variables like $ud_id but I can not figure it out.