i ma working on an script 'estimate.php' that jumps out of php withing predefined functions to execute the html i need in four different steps. the only problem is that when i fill in the fields and submit the form(to the same script 'estimate.php') i cannot read the values passed using the post method 🙁
am i missing something here? do i need to access the variables differently since the script executes using $php_self?
Try putting this on the web that is getting the data, $variable will be the variable you'll be using and passed_variable the name of the variable of the form 🙂
$variable =$HTTP_POST_VARS['passed_variable'];
Hope you'll find it useful.
i have tried to echo in that fashion to see if it is being passed or not... no return 🙁