brandon_shirey09
New member
I have the form completed, I just need help with the PHP file because im not too familiar with it.
<form id="formData" method="post" action="" name="contact" title="Contact" onSubmit="return function (email,name,subject)">
<input id="email" type="text" size="60" name="email" maxlength="100" value="Enter Your Email..." onclick="if(this.value=='Enter Your Email...') this.value='';" onblur="if (this.value=='') this.value='Enter Your Email...';" /><br /><br /><br />
<input style="margin-top: -10px;" id="name" type="text" size="60" name="name" maxlength="100" value="Enter Your Name..." onclick="if(this.value=='Enter Your Name...') this.value='';" onblur="if (this.value=='') this.value='Enter Your Name...';" /><br /><br /><br />
<input style="margin-top: -20px;" id="subject" type="text" size="60" name="subject" maxlength="250" value="Subject..." onclick="if(this.value=='Subject...') this.value='';" onblur="if (this.value=='') this.value='Subject...';" /><br /><br><br />
<textarea style="margin-top: -30px;" id="textbox" rows="10" cols="90" >
</textarea><br><br><br><br><br><br><br><br><br><br><br /><br /><br /><br /><br />
<input style="margin-top:-48px; float:left;" type="submit" id="Button" value="SUBMIT" onmouseover="if (this.id=='Button') this.id='ButtonHover'" onmouseout="if (this.id=='ButtonHover') this.id='Button'" /><input style="float:right; margin-top:-48px; margin-right: 560px;" type="reset" id="Button" value="RESET" onmouseover="if (this.id=='Button') this.id='ButtonHover'" onmouseout="if (this.id=='ButtonHover') this.id='Button'" />
</form>
There are a million line breaks because positioning errors were easily fixed this way.
<form id="formData" method="post" action="" name="contact" title="Contact" onSubmit="return function (email,name,subject)">
<input id="email" type="text" size="60" name="email" maxlength="100" value="Enter Your Email..." onclick="if(this.value=='Enter Your Email...') this.value='';" onblur="if (this.value=='') this.value='Enter Your Email...';" /><br /><br /><br />
<input style="margin-top: -10px;" id="name" type="text" size="60" name="name" maxlength="100" value="Enter Your Name..." onclick="if(this.value=='Enter Your Name...') this.value='';" onblur="if (this.value=='') this.value='Enter Your Name...';" /><br /><br /><br />
<input style="margin-top: -20px;" id="subject" type="text" size="60" name="subject" maxlength="250" value="Subject..." onclick="if(this.value=='Subject...') this.value='';" onblur="if (this.value=='') this.value='Subject...';" /><br /><br><br />
<textarea style="margin-top: -30px;" id="textbox" rows="10" cols="90" >
</textarea><br><br><br><br><br><br><br><br><br><br><br /><br /><br /><br /><br />
<input style="margin-top:-48px; float:left;" type="submit" id="Button" value="SUBMIT" onmouseover="if (this.id=='Button') this.id='ButtonHover'" onmouseout="if (this.id=='ButtonHover') this.id='Button'" /><input style="float:right; margin-top:-48px; margin-right: 560px;" type="reset" id="Button" value="RESET" onmouseover="if (this.id=='Button') this.id='ButtonHover'" onmouseout="if (this.id=='ButtonHover') this.id='Button'" />
</form>
There are a million line breaks because positioning errors were easily fixed this way.