View Single Post
Old 10-07-2011, 12:23 AM   PM User | #3
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,635
Thanks: 4
Thanked 2,448 Times in 2,417 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
I'll add this thread to the "list".
One thing to note is that IE's behaviour contravenes the specification for HTML form processing indicated here: http://www.w3.org/TR/html4/interact/...html#h-17.13.2 (which will come as no surprise to any client developer :P).
From the PHP world, you should actually check that every required field has been provided:
PHP Code:
if (isset($_POST['username'], $_POST['password'])) 
For example. This kills 2 birds with one stone.
Fou-Lu is offline   Reply With Quote