lxm
04-29-2008, 10:35 AM
Ok I have an online survey with 4/5 pages. PHP code saves the data to a text file. In IE this works fine but in Mozilla Firefox no data is saved from the first page, however, all the data is saved from the subsequent pages.
Does anyone know why this might be?
this is the php code from the page where nothing is saved, it is the same for all the pages:
<?php
foreach ($_POST as $key => $val) {
echo '<input type="hidden" name="' . $key . '" value="' . $val . '" />' . "\r\n";
}
?>
Does anyone know why this might be?
this is the php code from the page where nothing is saved, it is the same for all the pages:
<?php
foreach ($_POST as $key => $val) {
echo '<input type="hidden" name="' . $key . '" value="' . $val . '" />' . "\r\n";
}
?>