I have a form that generates form fields based on user input. On submit I need to access the values been submitted throught these fields. Since I don't know the name of the fields before hand. How can I access these field values.
In perl there is a default array.... does PHP have anything like this.
regards
zulfer
how can u not know the field names or design it so that you will?
anyway, you could use print_r( $POST ); to get all the values, and you could use a foreach( $POST as $var ); to loop through all the values