Hey , here is my code and so i was wondering how do i put an echo efter the sql query , i mean if the sql query worked succesfully and and saved all information , i want it to echo “done” instead of showing the form.
how do i do that ??
[php] echo ‘’;
echo ’
write a something
‘.$message.’
';
if (!empty($message)) {
mysql_query("INSERT INTO `gb` (`sender_id`, `owner_id`, `message`) VALUES('$sender_id', '$owner_id', '$message')") or die(mysql_error());
} [/php]