This should be pretty easy for you guys. Right now I have a file that includes other files based on the step (simple switch() and case). However, within these included files are steps. IE
if (isset($_GET['step']) && $_GET['step']==2) {
//code for step 2 goes here
}
else {
//code when variable step not set goes here
}
However, this would require that the included file be able to call itself which wouldnt work because I cant call it through survey.php?page=u_personal&step=2...or can I? Any insight into how I could go about accomplishing this would be greatly appreciated!