Page is a not externally linkable
dreamcatcher - 11:05 pm on Jul 27, 2007 (gmt 0)
You are trying to access a variable before its set. Look into isset [uk2.php.net] and change this line: <?php echo $error;?> to this: <?php echo (isset($error)? $error : '');?> Basically you are echoing the value to the page before the variable exists. Hope that makes sense. dc
Hi horseatingweeds,