Hi hi , im having a big problem, i have a text editor made with javascript, over a form , just like the one we use on forums (with small bugs 😛 ) , so far, i when i try to update the info , the result of my query returns true i think, but no info was updated :bemused: , ofcourse sometimes this message comes with html, but sometimes i dont , please help
include('connection.php');
$indexid = $_POST['id'];
$message = $_POST['message'];
$result = mysql_query("UPDATE my_table SET message='$message' WHERE id='$indexid' LIMIT 1;") or die(mysql_error());
if($result)
{
echo "this info was recived and updated : $message";
}
AND IT SHOWS THE MESSAGE, it just wont update the database T_T , why ?
i use the same process for other things 🙁