Or instead of relying on something that many people disable... write input valididation into your processing page, and have it kick them back marking the error'd fields and defaulting to the previous inputs so they can continue where they left off....
Pseudo code:
if $error echo 'Items in red are required items'
<form action=PHPSELF>
(if $errname make red)Name: (if $POST['name'] echo it) Joe
(if $errage make red)Age: (if $POST['age'] echo it) 2
(if $errjob make red)Job: (if $POST['job'] echo it)
(if $errmarried make red)Marital Status: (if $POST['married'] echo it)
</form>
(enter is pressed -- I generally use PHPSELF since its the easiest way to ensure values are always avaliable)
check $_POST vars for required input (4 vars in this case)
2 missing vars... set $error to reflect this and set an var for each bad input name
if no failed validation make your SQL queries and then use a header() call to refresh to the next page you need....
thats how I would do it