Dec 4th, 2010, 1:47 PM
Ah! The problem is the action attribute of your form tag: in the generated source it has /2011/step1.php - which is incorrect.
Is that value hardcoded? If so, replace it with this:
- Ben
Is that value hardcoded? If so, replace it with this:
Code:
<form ... action="<?php echo $_SERVER["PHP_SELF"]?>" ... >
- Ben