Jump to content

Problem with a form


almightyegg

Recommended Posts

I'll start with the codes:

The Form:

<form action="/chat/index.php" method="POST">
Message: <input type="text" name="message"><br>
<input type="submit" value="Post">
</form>

 

Index.php:

<?
$message = $_POST['message'];
if(isset($message)){
$timestamp = date("d-m-Y H:i:s");
$insert = mysql_query("INSERT INTO chat (`timestamp`, `userid`, `message`)
		VALUES('$timestamp', '{$mem['id']}', '" . mysql_real_escape_string($message) . "')") or die(mysql_error());
unset($message);
}
?>

It shows no errors it just isn't inserting the info.........I have no idea why?!?

 

also a question, once it is working, and I've unset $message if the user refreshes will it still see the $message, I'm not sure I can explain why I think it might still be there...so thought I'd ask...

Link to comment
https://forums.phpfreaks.com/topic/71251-problem-with-a-form/
Share on other sites

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.