Originally posted by David.Poundall
I check that one by doing a ...

PHP Code:
$variable=$_POST['varname'];
if (
$variable==''$variable=$_GET['varname']; 
But the problem is that the data just doesn't send in the first place. The Hyperlink has pre-defined variables thet can be recovered using $_GET. But Techgnome appears to be right here. Because the form is not submitted - it is just linked from - the $_POST variables are not attached at the the client end at the time the link is invoked.


That's just really poor coding.