I have to collect data from HTTP post. Data is send in key value pairs. I have to store value in databse.
How HTTP post is send ( how it looks when sending )?
<input type=text name="f_name" value="$first_name => ADI"> or ?
How to collect values? I know name of the key ($first_name) just need to collect value.Can not use function foreach()
because I use php3.
example of key value pairs:
$first_name => John
$last_name => Smith
Thanks in advance
How HTTP post is send ( how it looks when sending )?
<input type=text name="f_name" value="$first_name => ADI"> or ?
How to collect values? I know name of the key ($first_name) just need to collect value.Can not use function foreach()
because I use php3.
example of key value pairs:
$first_name => John
$last_name => Smith
Thanks in advance