
02-16-2004, 05:09 PM
|
 |
|
|
Join Date: Mar 2002
Location: Norwich, UK
Posts: 1,543
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by sifuhall
Still tracking down my scores problem.
I have tracked the problem down to arcade.php, inside
PHP Code:
if ($_POST['sessdo'] == "permrequest") {
specifically this area:
PHP Code:
globalize($_POST, array('note'=>STR_NOHTML, 'id'=>INT, 'gametime'=>INT, 'score'=>STR_NOHTML, 'key'=>INT));
// Turn negative globalize results into errors
if ($_POST['note'] == 0 || $_POST['id'] == 0 || $_POST['gametime'] == 0 || $_POST['fakekey'] == 0) {
exit;
}
Inside these vars I have:
note=0
id=0
gametime=1076957565
gametime=3
so it is note and id that are causing me to exit without recording the score.
These are _POST variables, why would they not be present here?
|
Why the two gametime variables?
|