- Impact
- 19
hey
why the hell is this form not doing anything?
i keep clicking submit but it doesnt do ANYThING
im not done yet...i just wanted to see if the "process.php" works fine...but the stupid form just sits there and does nothing lol
why the hell is this form not doing anything?
PHP:
<form action="process.php" method="POST">
<fieldset>
<LEGEND>Submit a Login</LEGEND>
<ol>
<li>
<LABEL for="website">Website: </LABEL>
<input type="text" id="website" name="website" maxlength="40" title="Website" /> e.g.<em>www.site.com</em>
</li>
<li>
<LABEL for="username">User Name:</LABEL>
<input type="text" id="username" name="username" maxlength="40" title="Username" /> e.g.<em>user042</em>
</li>
<li>
<LABEL for="password">Password:</LABEL>
<input type="text" id="password" name="password" maxlength="40" title="Password" />
</li>
<?php if($other_field=="true"){ ?>
<li>
<LABEL for="other">Other:</LABEL>
<input type="text" id="other" name="other" maxlength="40" title="other" /> <em>Other info needed to login</em>
</li>
<?php } ?>
<strong>Are you human? Prove it!</strong>
<?php echo recaptcha_get_html($publickey);?>
<input type="hidden" name="submitnew" value="1" />
<input type="submit" value="Submit Login" />
</fieldset>
</form>
im not done yet...i just wanted to see if the "process.php" works fine...but the stupid form just sits there and does nothing lol





