Re: [PHP] passing values from dynamic form to another php page?

2005-09-16 Thread hope
Quite rite. Well i have used this on my next page: global $HTTP_POST_VARS; $num_fields=count($HTTP_POST_VARS); while(list($key, $value) = each($HTTP_POST_VARS)) { echo $key = $valuebr; /or whatever coding i want to do// } regards hope Jay Blanchard wrote:

[PHP] passing values from dynamic form to another php page?

2005-09-15 Thread hope
hi i m generating a dynamic form (no. of fileds depend upon user selection from previous page). On this page user enters values into form fields and i want to acess them on next page. ///file1.php ?php

RE: [PHP] passing values from dynamic form to another php page?

2005-09-15 Thread Jay Blanchard
[snip] form name=sqlform action=table1_process2.php method=post enctype=multipart/form-data // now i want to access the values from input fields on next page? can somebody give me idea how to pass all form field values