Posted by Shelly on 12/26/05 15:34
I am totally baffled by what is happening in my code. I have a section
of code (shown below with two comment lines inserted). They are
essentially identical text boxes (names and variables different). Yet,
the first comes up with a white background and the second comes up with
a yellow/gold background. Any help with this mystery would be
appreciated.
Shelly
<tr>
<td><div align="right"><strong>Answer #2:
</strong></div></td>
// This background comes up in white
<td><input name="hint_2_Answer" type="text" id="hint_2_Answer"
value="<?php if (isset($_hint2)) echo $_hint2;?>"
maxlength="20">
</td>
</tr>
<tr>
<td><div align="right"><strong>Current email address:
</strong></div></td>
// This background comes up in yellow/gold
<td><input name="email" type="text" id="email"
value="<?php if (isset($_mail)) echo $_email; ?>"
maxlength="30">
</td>
</tr>
Navigation:
[Reply to this message]
|