I'm trying to make a contact form on my site. Here's the code:
<form id="form" method="post" action="send.php">
<fieldset>
<label><input type="text" value="Email" onBlur="if(this.value=='') this.value='Email'" onFocus="if(this.value =='Email' ) this.value=''"></label>
<label><input type="text" value="App URL" onBlur="if(this.value=='') this.value='App URL'" onFocus="if(this.value =='App URL' ) this.value=''"></label>
<div class="btns"><a href="javascript:" class="button" onClick="document.getElementById('form').submit()">Send</a></div>
</fieldset>
</form>
The problem is that the page send.php has nothing inside $_POST!
Is there someone who know how to solve it? Thank you!
valueas a substitute for a real label. It has nasty accessibility problems. – Quentin Feb 13 at 9:54