Hi all
Can someone point out the errors of my ways, it's late so I expect itøs somthing stupid but I just canøt see it!
Problem is $empty wont print()?
$empty="You are missing a field!<br>go back and check everythings in order.";
function check_head_fields() {
global $field, $empty;
for ($i=1; $i<6; $i++) {
if (empty($field[$i])) {
print($empty);
exit;
}
$field[$i]=addslashes($field[$i]);
}
}
Cheers
Nick