And also, I have asked this before but didn't implement it at the time, and now I am so need to ask again.
How do I insert the values from all the forms into the same db row, would it be,
$sql = ("INSERT INTO mytable (id,something,or,other) VALUES ('null','$what','$to','$do')");
$action = mysql_query($sql);
$customer_id = mysql_affected_row($action);
AND on the next form
$sql = ("UPDATE INTO mytable (next,set,of,fields) VALUES ('$next','$set','$of','$values') WHERE id=$customer_id");
$action = mysql_query($sql);
And so on?