Hi Everyone,
I am passing a form to a php script for further processing.
I am able to retrieve the last value set for that given form variable
using
$variable=$_REQ UEST['form_variable'];
My question is, what is the Php way of retrieving all the values passed
for the same form variable?
For example, if the php script is called with a syntax like
, how do I iterate through all the values that form_variable has been
set to?
Thanks and regards,
Girish
I am passing a form to a php script for further processing.
I am able to retrieve the last value set for that given form variable
using
$variable=$_REQ UEST['form_variable'];
My question is, what is the Php way of retrieving all the values passed
for the same form variable?
For example, if the php script is called with a syntax like
, how do I iterate through all the values that form_variable has been
set to?
Thanks and regards,
Girish
Comment