Thanks elToro. That helps me, however it doesn't say how to perform error checking to make sure all fields are filled in before sending you to the next step. This is my biggest problem.
I have the form action set as this;
<form method="post" action="order.php" (this calls itself to perform error checking)
What I need is an if else statement to do something like this;
if(everythingIsCorrect){
go to step 2 or action="order_step2.php"
}else{
display error message
}
Can you help?
Thanks.