Hi there,
My name's Paul and i'm an experienced non-HTML/PHP developer, just getting to grips with HTML & PHP.
I have a simple form which is working fine in Mozilla, but not in IE5.
The problem is that when the form is presented to the user, they cannot type anything into the input fields in IE5 but they can when using Mozilla.
Here is a sample of the code:
The h1.d is defined as:
As it's working fine in Mozilla, I know the basic idea is sound, but I have no idea why IE5 is not allowing data to be entered into the input fields.
Many thanks if you decide to reply to me!
Cheers
Paul
My name's Paul and i'm an experienced non-HTML/PHP developer, just getting to grips with HTML & PHP.
I have a simple form which is working fine in Mozilla, but not in IE5.
The problem is that when the form is presented to the user, they cannot type anything into the input fields in IE5 but they can when using Mozilla.
Here is a sample of the code:
Code:
echo "<form action='processform.php' method='post'>"; echo "<h1 class='d'>"; echo "<table border='0' cellspacing='0' cellpadding='0'>"; echo "<tr><td align='right'><B>First Name:</td>"; echo "<td><input type='text' name='firstname' value='$firstname' size='30' maxlength='30'></td>"; echo "</tr>"; echo "<tr><td align='right'><B>Surname:</td>"; echo "<td><input type='text' name='surname' value='$surname' size='30' maxlength='30'></td>"; echo "</tr>"; </table> </form>
Code:
h1.d {position:absolute; left:450px; top:0px; font-family:georgia; font-size:6pt}
Many thanks if you decide to reply to me!
Cheers
Paul
Comment