Hi
I have a form with several values that the user can change. I use the parse_str function and it works for the values that are inserted dynamically in the form. But when the user changes one field, the function does not work.
This is what happens:
I have this code:
echo("<br>teste:" . $teste);
parse_str($teste);
echo("<br>MiddleName:" . $MiddleName);
and this is the result:
teste: FirstName=anita&MiddleName=tel
MiddleName: telmo
Can someone tell me why does this happens?
Thanks
Sónia