Mod-Jay Posted September 26, 2010 Share Posted September 26, 2010 making it not say resend after sending something + refreshing the page Link to comment https://forums.phpfreaks.com/topic/214454-resend-error/ Share on other sites More sharing options...
Pikachu2000 Posted September 26, 2010 Share Posted September 26, 2010 code details need here. k tnx bai. Link to comment https://forums.phpfreaks.com/topic/214454-resend-error/#findComment-1115939 Share on other sites More sharing options...
Mod-Jay Posted September 26, 2010 Author Share Posted September 26, 2010 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 More sharing options...
fortnox007 Posted September 26, 2010 Share Posted September 26, 2010 I bet this is not possible with Post method ( not sure though, but i am pretty sure This might be different if you created cookies or sessions to store data, but i not not so sure. Link to comment https://forums.phpfreaks.com/topic/214454-resend-error/#findComment-1115943 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.