Can someone tell me why this doesn't work?
I'm trying to print out the values of the form I sent to this page via "POST"
This is my code:
$count=1;
while($POST[$count])
{
echo($POST[$count]);
$count++;
}
Yet I get undefined offset 1 on the
line "echo($_POST[$count]); " line.
Any ideas?