Welcome Guest, Not a member yet? Register   Sign In
Reload Problem, user tend to submit data twice
#15

[eluser]worchyld[/eluser]
A unique token does not solve this problem. Every time you submit the form the unique token is always the same!

Code:
<?php
/* This code is not intended to be used on a live site */
session_start();

$unique_code = md5(microtime());

if (empty($_POST)) {
    $_SESSION['unique_code'] = $unique_code;
}

print "POSTED: <br />";
print_r($_POST);
print '<br /><br />SESSION: <br />';
print_r($_SESSION);
?&gt;

&lt;form name="testForm" method="post" action="&lt;?=$_SERVER['PHP_SELF'];?&gt;"&gt;

<p>
    &lt;input type="text" name="name" id="name" value="" /&gt;<br />
    &lt;input type="text" name="unique_code" id="unique_code" value="&lt;?=$unique_code;?&gt;" /&gt;
</p>

<p>
    &lt;input type="submit" /&gt;
</p>

&lt;/form&gt;


Messages In This Thread
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 03:14 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 05:11 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 08:42 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 09:24 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 09:28 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 10:00 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 10:37 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-28-2007, 10:24 PM
Reload Problem, user tend to submit data twice - by El Forum - 10-29-2007, 05:37 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-29-2007, 08:38 PM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 03:05 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 06:05 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 07:59 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 10:07 AM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 01:04 PM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 01:51 PM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 02:19 PM
Reload Problem, user tend to submit data twice - by El Forum - 10-30-2007, 04:06 PM
Reload Problem, user tend to submit data twice - by El Forum - 12-11-2007, 05:06 PM
Reload Problem, user tend to submit data twice - by El Forum - 12-11-2007, 05:51 PM
Reload Problem, user tend to submit data twice - by El Forum - 04-29-2008, 12:01 PM
Reload Problem, user tend to submit data twice - by El Forum - 09-23-2009, 09:34 PM
Reload Problem, user tend to submit data twice - by El Forum - 09-24-2009, 07:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB