Would have put this on the PHP forums but I think its an HTML problem.
This is the page I'm having trouble with. As you can see, it's an application form. Every other input field is selectable by mouse, except for the first one. It's almost like something is on top of it because you can't select the "Character Information" text, but you can select text below it and drag up and it works fine.
Here is the code snippet from that area.
// Include the header code
include("application/application_header.html");
echo '
<form action="application_submitted.php" method="post">
<h3>Character Information</h3>
<b>What is your character's name?</b><br>
<input type="text" name="character_name" size="25">
<br><br>
<b>Is your character currently level 80?</b><br>
<input type="radio" name="character_level_80" value="Yes">Yes
<input type="radio" name="character_level_80" value="No">No
<br><br>
<b>What server is your character currently on?</b><br>
<input type="text" name="character_current_server">
And I know I have some depreciated code in there, but I plan to fix that later, and I'm old school :P so don't grill me there. lol.


Sign In
Create Account


Back to top









