Real Estate Forums

Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here.

Reply
 
Thread Tools Display Modes
Old 06-28-2007, 04:25 PM
Morristown's Avatar
Morristown Morristown is offline
Uber Real Estate Webmaster
 
Join Date: Jan 2007
Location: Morristown NJ
Posts: 1,528
Morristown is an unknown quantity at this point
Default Contact Forms Html

Hi Guys,

I am trying to change my contact form so that the Name and E-mail box are required fields, Can anyone give me a hand with this?

Here is where the contact form is:

http://www.jboyerhomes.com/contact.html

Thank you for your help.
__________________
James Boyer
RE/MAX Properties Unlimited
Morristown, NJ 07960
973-647-0253
Serving the Real Estate markets of Morristown, Morris Township, Madison NJ Real Estate, Chatham NJ , Summit, Short Hills, Millburn, Maplewood, South Orange, & West Orange Referals happily given and accepted. For information on home sales in New Jersey please contact. Morristown NJ Real Estate Madison NJ Real Estate Chatham NJ Real Estate
Reply With Quote
Old 06-29-2007, 12:27 AM
PLS PLS is offline
Advancing Webmaster
 
Join Date: Jul 2006
Posts: 36
PLS is on a distinguished road
Default Re: Contact Forms Html

If you don't want to mess with your php script, the easiest way is with a javascript alert.

Add this to your head tag:
Code:
<script type="text/javascript"><!--
function validateForm() {
with (document.contact) {
var alertMsg = "The following required fields have been left empty:\n";
if ( visitor.value == "" ) alertMsg += "\nYour Name";
if (visitormail.value == "") alertMsg += "\nYour Email Adress";
if (alertMsg != "The following required fields have been left empty:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
// -->
</script>
Change your form tag like so:
Code:
<form method="post" action="sendeail.php" name="contact" onSubmit="return validateForm()>
Reply With Quote
Old 06-29-2007, 10:35 AM
Morristown's Avatar
Morristown Morristown is offline
Uber Real Estate Webmaster
 
Join Date: Jan 2007
Location: Morristown NJ
Posts: 1,528
Morristown is an unknown quantity at this point
Default Re: Contact Forms Html

Thanks PLS, I got it working a little but may try your suggestion this afternoon.

Jim
__________________
James Boyer
RE/MAX Properties Unlimited
Morristown, NJ 07960
973-647-0253
Serving the Real Estate markets of Morristown, Morris Township, Madison NJ Real Estate, Chatham NJ , Summit, Short Hills, Millburn, Maplewood, South Orange, & West Orange Referals happily given and accepted. For information on home sales in New Jersey please contact. Morristown NJ Real Estate Madison NJ Real Estate Chatham NJ Real Estate
Reply With Quote
Old 06-29-2007, 06:40 PM
gibex's Avatar
gibex gibex is offline
Uber Real Estate Webmaster
 
Join Date: May 2007
Location: far east
Posts: 539
gibex is on a distinguished road
Default Re: Contact Forms Html

but if I disable JS, I can send you a lot of emails without check.
It's better to check your fields in both PHP && JS to avoid spam bots.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



For our members

Main Sections

IDX Coverage Areas

Spiders Welcome

All times are GMT -7. The time now is 04:48 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.