Maxwave,
First I would make sure that you are getting an array of data sent back to you.
One way is to change the POST to GET in the form and see if the data is actually being submitted properly.
Assuming it is then check in your PHP page the contents of the POST/GET array:
while($x = each($_POST))
{
echo "$x[0] => $x[1]<BR>";
}
and you should get a print out of the form data.
If that is working then you should be able to refernce the variable fname by using:
echo $_POST['fname'];
(or GET if you are using GET in the form).
rinjani