Like i'm doing this code...and i want to transfer users to the form when they don't answer all of the values...i did it like this..
code:
<?php>
$a = $_POST['field1'];
$b = $_POST['field2'];
(...)
elseif ($a == 0 && $b == 0) {
echo "Please insert at least one value in the form. You'll be transfered to it again in 5 seconds" };
<?>
What shall i insert in the last elseif to transfer users?
Another question?is there another way to make a value = to nothing?'cause i'm going to make the form default number 0 but people may delete the 0's and click Go, and that won't have a function in the php code
...to realise what zeros i'm talking about i made them bold...