Sorry
here's the link
http://www.prochant.com/test/le_formulaire3.htm
It works on all Mac browser but on the PC side it won't work on IE 6
When submit nothing happens.
It is suposed to parse through a redirection page. And based on selection of the user it will bring a second form on wich i want to keep variable active from the first one.
Here's the direction script
<?PHP
session_start();
header("Cache-control: private");
?>
<html>
<!-- redirection.php -->
<body>
<?PHP
if ($Paiement == "Poste") {
require 'formposte.php';
} elseif ($Paiement == "PPal") {
require 'formppal.php';
}
?>
</body>
</html>