help pleasE....
Previously my submit button on assesment forms were working in both explorer and firefox, however the data was not being emailed from page 1. So, I created the last form again but this time pasting the script (below) to capture the information from page1 first on the form. I then paste the other items on the form. I rename the form and added the correct action.php file. I also added a print this page button which works in both explorer and firefox. The buttons are on the form.
Script used:
<?php
foreach($_POST as $key=>$value){
if ($key!="submit"){
$value=htmlentities(stripslashes(strip_tags($value )));
echo "\t<input type=\"hidden\" name=\"$key\" value=\"$value\">\n";
}
}
?>
However, I create the submit and reset button and they would not work in explorer. These buttons only work in firefox now. Please Help.
Previously my submit button on assesment forms were working in both explorer and firefox, however the data was not being emailed from page 1. So, I created the last form again but this time pasting the script (below) to capture the information from page1 first on the form. I then paste the other items on the form. I rename the form and added the correct action.php file. I also added a print this page button which works in both explorer and firefox. The buttons are on the form.
Script used:
<?php
foreach($_POST as $key=>$value){
if ($key!="submit"){
$value=htmlentities(stripslashes(strip_tags($value )));
echo "\t<input type=\"hidden\" name=\"$key\" value=\"$value\">\n";
}
}
?>
However, I create the submit and reset button and they would not work in explorer. These buttons only work in firefox now. Please Help.
Comment