Advertisement

07.25.2008 at 06:31PM PDT, ID: 23597158
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

Add Validation using javascript to existing registration form

Asked by mnoel76 in JavaScript, PHP and Databases

Tags:

I have a rather poor validation script currently implemented on my registration script.  I am trying to add a validation technique like the code attached but realized that my registration script does not work by just adding it to the header.  I have altered my form from
<form method="POST" name="form1" action="<?php echo $editFormAction; ?>">

to

<form method="POST" name="msgform">

but realized I still need to have action="<?php echo $editFormAction; ?>  to fire the email and mysql query.  How can I implement the below referenced javascript validation code into my form and still have my form function properly(i.e. send emails and submit in db)

  Your help is greatly appreciated.  ThanksStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
THIS IS MY CURRENT REGISTRATION SCRIPT AND WOULD LIKE TO IMPLEMENT THE CODE BELOW THIS TO VALIDATE MY FORM
 
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
 
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
 
	//validate
	$error = "";
	if($_REQUEST['name'] == "")
		$error.= "enter name,<br>";
	if($_REQUEST['email'] =="")
		$error.="enter email,<br>";
	if($_REQUEST['phone']=="")
		$error.="enter phone,<br>";
	if($error != ""){
		echo "<div class='free'>Please go <a href='register_full.php'>back</a> and<blockquote>".$error."</blockquote></div>";
		include('footer2.php');
		die();
	}
  $password = rand(9898,9898998);
  
  //send member information
  $message = 
'
message body
 
Please keep the following for your records:
 
Username: '.$_REQUEST['email'].'
Password: '.$password;
 //mail member
  @mail($_REQUEST['email'],'Member Registration',$message,'From:'.$settings['email']);
  $mailmessage = '<div align=center class="pageSubTitle">Username and Password sent to '.$_REQUEST['email'].'</div>';
  @mail($settings['email'],'How did you hear about us',$_REQUEST['hear_about'],'From:email@email.com');
  $insertSQL = sprintf("INSERT INTO members (name, address, city, `state`, zip, active, email, password, phone) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['name'], "text"),
                       GetSQLValueString($_POST['address'], "text"),
                       GetSQLValueString($_POST['city'], "text"),
                       GetSQLValueString($_POST['state'], "text"),
                       GetSQLValueString($_POST['zip'], "text"),
                       GetSQLValueString($_POST['active'], "text"),
                       GetSQLValueString($_POST['email'], "text"),
                       GetSQLValueString($password, "text"),
                       GetSQLValueString($_POST['phone'], "text"));
 
  mysql_select_db($database_myconn, $myconn);
  $Result1 = mysql_query($insertSQL, $myconn) or die(mysql_error());
  $result2 = mysql_query("SELECT LAST_INSERT_ID() as autoId") or die(mysql_error());
  $auto = mysql_fetch_assoc($result2);
  mysql_query("UPDATE members SET groupid=". $auto['autoId']." WHERE id=" . $auto['autoId'] . " LIMIT 1") or die(mysql_error());
	
  echo "<h3><font color=red>You are now registered, check your email for username and password</font></h3>        
 <a href='login.php' class='pageLink'>Sign In</a>";
  $message =
  'A new user has signed up to '.$settings['domain'].'
  
  Member Info: 
  '.$_REQUEST['name'].'
  '.$_REQUEST['phone'].'
  '.$_REQUEST['email'].'
  
  ';
  
   mail($settings['email'],"New Registered User",$message,"FROM:".$settings['email']);
}
?>
 
________________________________________________________________________
THIS IS THE JAVASCRIPT VALIDATION I WOULD LIKE TO IMPLEMENT HOWEVER IT DOES NOT GET TRIGGERED WHEN I CHANGE THE FORM TO NAME
function checkForm()
{
   var cname, cemail, cpassword, cpassword2;
   with(window.document.msgform)
   {
      cname    = name;
      cemail   = email;
      cpasswword = password;
      cpassword2 = password2;
   }
 
   if(trim(cname.value) == '')
   {
      alert('Please enter your name');
      cname.focus();
      return false;
   }
   else if(trim(cemail.value) == '')
   {
      alert('Please enter your email');
      cemail.focus();
      return false;
   }
   else if(!isEmail(trim(cemail.value)))
   {
      alert('Email address is not valid');
      cemail.focus();
      return false;
   }
   else if(trim(cpassword.value) == '')
   {
      alert('Please enter a password');
      cphone.focus();
      return false;
   }
   else if(trim(cpassword2.value) == '')
   {
      alert('Please re-enter a password');
      cpassword.focus();
      return false;
   }
   else
   {
      cname.value    = trim(cname.value);
      cemail.value   = trim(cemail.value);
      cpassword.value = trim(cpassword.value);
      cpassword2.value = trim(cpassword2.value);
      return true;
   }
}
 
function trim(str)
{
   return str.replace(/^\s+|\s+$/g,'');
}
 
function isEmail(str)
{
   var regex = /^[-_.a-z0-9]+@(([-_a-z0-9]+\.)+(ad|ae|aero|af|ag|
ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|
bh|bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|
ch|ci|ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|
dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|
gd|ge|gf|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|
hr|ht|hu|id|ie|il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|
kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|
ma|mc|md|mg|mh|mil|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|
mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|
nz|om|org|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|pro|ps|pt|pw|py|qa|
re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|
su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|tn|to|tp|tr|tt|tv|tw|tz|
ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|
zm|zw)|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5])\.){3}([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$/i;
 
return regex.test(str);
}
[+][-]07.25.2008 at 06:37PM PDT, ID: 22093395

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.26.2008 at 09:04AM PDT, ID: 22095364

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.26.2008 at 07:49PM PDT, ID: 22097011

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.26.2008 at 08:23PM PDT, ID: 22097058

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.27.2008 at 11:35AM PDT, ID: 22099183

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.27.2008 at 12:01PM PDT, ID: 22099241

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: JavaScript, PHP and Databases
Tags: PHP mySQL
Sign Up Now!
Solution Provided By: hielo
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07.27.2008 at 12:17PM PDT, ID: 22099271

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_2_20070628