almadera Posted March 18, 2008 Share Posted March 18, 2008 I'm using Godaddy's gdform.php form mailer for my forms. The forms work perfectly except the validation. I need the visitors to fill in the fields and then submit the information to my email, but the problem is that everyone can submit even if he doesn't fill in the form. I want all of the fields to be required. Here is my form script : <form action="/gdform.php" method="post"> <table align="center"> <input type="hidden" name="subject" value="Form Submission"> <input type="hidden" name="redirect" value="/Add/thankmes.html"> <input type="hidden" name="required" value="YourName, Email, description"> <tr> <td><p><font color=WHITE font size=4>Your Name:</p> </font></td> <td align=center height=50><p><input type="text" name="YourName" size="52"/></p></td> </tr> <tr> <td><p><font color=WHITE font size=4>Your E-mail:</p> </font></td> <td height=50><p><input type="text" name="Email" size="52"/></p></td> </tr> <tr> <td><p><font color=WHITE font size=4>Your Message:</p> </font></td> <td><br><p><textarea name="description" cols="40" rows="5"> </textarea></p></td> </tr> <tr> <td><input type="submit" name="submit" value="Send"/></td> </tr> </table> </form> And here is the gdform.php script : <?php $request_method = $_SERVER["REQUEST_METHOD"] ; if($request_method == "GET"){ $query_vars = $_GET; } elseif ($request_method == "POST"){ $query_vars = $_POST; } reset($query_vars); $t = date("U"); $file = $_SERVER['DOCUMENT_ROOT'] . "/../data/gdform_" . $t; $fp = fopen($file,"w"); while (list ($key, $val) = each ($query_vars)) { fputs($fp,"<GDFORM_VARIABLE NAME=$key START>\n"); fputs($fp,"$val\n"); fputs($fp,"<GDFORM_VARIABLE NAME=$key END>\n"); if ($key == "redirect") { $landing_page = $val;} } fclose($fp); if ($landing_page != ""){ header("Location: http://".$_SERVER["HTTP_HOST"] ."/$landing_page"); } else { header("Location: http://".$_SERVER["HTTP_HOST"] ."/"); } ?> The user can fill in any, all, or none of the fields and submit. Does anyone know how to edit the gdform.php code so it doesn't pass empty fields ? Link to comment https://forums.phpfreaks.com/topic/96674-form-validation-problem/ Share on other sites More sharing options...
JD* Posted March 18, 2008 Share Posted March 18, 2008 Check out this reply: http://www.phpfreaks.com/forums/index.php/topic,187150.msg839078.html#msg839078 Link to comment https://forums.phpfreaks.com/topic/96674-form-validation-problem/#findComment-495088 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.