Anyone offer any help on this. I have a CFFORM with a couple of CFINPUT validation that works fine on my localhost test but when I upload it does not work. It simply sends the form without any of the validation
I have other form using similar setups that do work but cannot put my finger on why this would not work!
I have other form using similar setups that do work but cannot put my finger on why this would not work!
Code:
<cfform action="contact.cfm?send=1">
Name:<br>
<cfinput name="Name" type="text" size="30" required="yes"><br />
Email:<br>
<cfinput type="text" name="email" size="30" required="yes" validate="regular_expression" pattern="^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$" message="Please check the email address is complete and in the correct format"><br>
Comments:<br>
<textarea name="Comments" rows="5" cols="5"></textarea>
<br />
<input type="submit" value="Contact Us">
</p>
</cfform>