Jump to content

Resend Error


Mod-Jay

Recommended Posts

function sendText()
{
if($_SERVER['REQUEST_METHOD'] == 'POST'){
return mysql_query("INSERT INTO `test`.`chat` (`date` ,`username` ,`text`) VALUES (NOW( ) , 'Guest', '". realEscape($_POST['text']) ."');");
} else {
}
}

thats sends it to the db , thats what keeps resending

 

From code:

<form METHOD="POST"><textarea class="box2" style="float:left;resize:none;" name="text" id="text"></textarea>
<input type="submit" value="Send" style="height:56px;" onClick="reloadIt();sendText();"></form>

Link to comment
https://forums.phpfreaks.com/topic/214454-resend-error/#findComment-1115941
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.