Yeah, that's what I'm doing. The thing is I understand
how to do it, but I need to see the hidden data.
What i don't get is if I have a form with text boxes on it that posts like this...
(the key/value pairs for the text boxes are hidden - I get that)
and runs code like this
Code: Select all
foreach ($_REQUEST as $key=>$val)
{
$$key = "$val";
$id = $key;
$myvals = $val;
echo "$id = $myvals<br>";
myfunction($id,$myvals);
}
it will echo
Code: Select all
action=update
stage=1
__utma = 131175305.1111354728.1239403329.1239403329.1239403329.1
__utmz = 131175305.1239403329.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)
My data from the text boxes is missing, yet it runs through myfunction and updates the SQL table.
Why don't they echo?
Thanks for replying kaiser0427
