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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.