2012-06-27 74 views
0

我想要做的就是把一種形式的valadiation在同一頁上。 現在的問題是,如果您訪問該頁面,它已經顯示錯誤。 它必須是錯誤表明您填寫表格之後,而不是之前。PHP表單驗證顯示了

這是我的代碼:

<html> 
<head> 
    <title>Westpop</title> 
    <link rel="stylesheet" href="opmaak.css"> 
</head> 
<body> 
    <fblack> 
    <div id="header"><a href="Index.php"></a></div> 

    <div id="registreer"> 
     <table cellpadding="5" align="center"> 
      <th colspan="2" align="left">Registeren</th> 
      <form name="registreren" method="post" action="registreer.php"> 
       <tr> 
        <td><fblackbold>Inloggegevens:<fblackbold></td> 
       </tr> 

       <tr> 
        <td>Email</td> 
        <td><input type="text" size="50" placeholder="[email protected]" name="email"></td> 
       </tr> 
       <tr> 
        <td>Wachtwoord</td> 
        <td><input type="password" size="50" placeholder="min. 8 tekens, één hoofdletter, één cijfer" name="wachtwoord"></td> 
       </tr> 
       <tr> 
        <td><fblackbold>Persoonlijke gegevens:<fblackbold></td> 
       </tr> 
       <tr> 
        <td>Voornaam</td> 
        <td><input type="text" size="50" placeholder="" name="voornaam" ></td> 
       </tr> 
       <tr> 
        <td>Achternaam</td> 
        <td><input type="text" size="50" placeholder="" name="achternaam"></td> 
       </tr> 
       <tr> 
        <td>Geboorte Datum</td> 
        <td><input type="text" size="50" placeholder="jjjj-mm-dd" name="geboortedatum"></td> 
       </tr> 
       <tr> 
        <td>Geslacht</td> 
        <td> 
         M <input type="radio" size="50" value="m" name="geslacht"> 
         V <input type="radio" size="50" value="v" name="geslacht"> 
        </td> 

       </tr> 
       <tr> 
        <td>Adres</td> 
        <td><input type="text" size="50" placeholder="Straat 00" name="adres"></td> 
       </tr> 
       <tr> 
        <td>Woonplaats</td> 
        <td><input type="text" size="50" placeholder="" name="woonplaats"></td> 
       </tr> 

       <tr> 
        <td>Telefoonnummer</td> 
        <td><input type="text" size="50" placeholder="min. 9 tekens" name="telefoonnummer"></td> 
       </tr> 
       <tr> 
        <td>Functie</td> 
        <td> 
         <select name="functie"> 
          <option value="catering">Catering</option> 
          <option value="muziekpodia">Muziek en podia</option> 
          <option value="vervoerovernachten">Vervoer en overnachten</option> 
          <option value="logistiekbeveiliging">Logistiek en beveiliging</option> 
          <option value="diversen">Diversen</option> 
         </select> 
        </td> 
       </tr> 
       <tr align="right"> 
        <td></td> 
        <td><input type="reset" value="Wissen"><input type="submit" name="verzenden" value="Verzenden"></td> 
       </tr> 
      </form> 
     </table> 

     <?php 

      $host = "localhost"; 
      $gebruikersnaam = "root"; 
      $wachtwoord = ""; 
      mysql_connect($host, $gebruikersnaam, $wachtwoord); 

      $demooistedatabase = "c5g4westpopintranet"; 
      mysql_select_db($demooistedatabase); 

      $achternaam = $_POST["achternaam"]; 
      $voornaam = $_POST["voornaam"]; 
      $gbdatum = $_POST["geboortedatum"]; 
      $email = $_POST["email"]; 
      $geslacht = $_POST["geslacht"]; 
      $wachtwoord = $_POST["wachtwoord"]; 
      $woonplaats = $_POST["woonplaats"]; 
      $adres = $_POST["adres"]; 
      $telefoonnummer = $_POST["telefoonnummer"]; 
      $functie = $_POST["functie"]; 


      $achternaam = stripslashes($achternaam); 
      $voornaam = stripslashes($voornaam); 
      $gbdatum = stripslashes($gbdatum); 
      $email = stripslashes($email); 
      $geslacht = stripslashes($geslacht); 
      $wachtwoord = stripslashes($wachtwoord); 
      $woonplaats = stripslashes($woonplaats); 
      $adres = stripslashes($adres); 
      $telefoonnummer = stripslashes($telefoonnummer); 
      $functie = stripslashes($functie); 

      $query = "INSERT INTO 
         vrijwilliger (voornaam, achternaam, gbdatum, geslacht, wachtwoord, woonplaats, adres, telefoonnummer, functie, activiteitID, groepID, email) 
         VALUES 
         ('$voornaam', '$achternaam', '$gbdatum', '$geslacht', '$wachtwoord', '$woonplaats', '$adres', '$telefoonnummer', '$functie', null, null, '$email')"; 

      $foutloos=true; 

      if(preg_match("/^.*(?=.{8,})(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z]).*$/", $wachtwoord) === 0) { 
       echo '<fblack>Wachtwoord moet minstens 8 tekens lang zijn, een kleine letter, grote letter én cijfer bevatten.<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[0-9]{10}+$/", $telefoonnummer) === 0) { 
       echo '<fblack>Het telefoonnummer moet 10 cijfers bevatten.<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[0-9]{4}-[0-9]{1,2}-[0-9]{1,2}$/", $gbdatum) === 0) { 
       echo '<fblack>Geboorte datum moet op dit formaat ingevoerd worden: JJJJ-MM-DD<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[a-z0-9]+([_\\.-][a-z0-9]+)*@([a-z0-9]+([\.-][a-z0-9]+)*)+\\.[a-z]{2,}$/i", $email) === 0) 
      { 
       echo '<fblack>Email moet hier op lijken: [email protected]<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[A-Z][a-zA-Z -]+$/", $voornaam) === 0) { 
       echo '<fblack>Voornaam is niet geldig ingevoerd, heeft u een hoofdletter gebruikt?<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[A-Z][a-zA-Z -]+$/", $achternaam) === 0) 
      { 
       echo '<fblack>Achternaam is niet geldig ingevoerd, heeft u een hoofdletter gebruikt?<br><fblack>'; 
       $foutloos = false; 
      } 

      if($geslacht == '') { 
       echo '<fblack>U heeft uw geslacht niet aangegeven.<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[a-zA-Z]+\ +[0-9]+$/", $adres) === 0) { 
       echo '<fblack>Het adres is verkeerd ingevoerd.<br><fblack>'; 
       $foutloos = false; 
      } 

      if(preg_match("/^[a-zA-Z\s]+$/", $woonplaats) === 0) { 
       echo '<fblack>De woonplaats is verkeerd ingevoerd.<br><fblack>'; 
       $foutloos = false; 
      } 

      if($foutloos == true) { 
       mysql_query($query) or die('<fblack>U staat al in ons systeem<A HREF="javascript:javascript:history.go(-1)"><br><br>Klik hier om terug te gaan</A><fblack>'); 
       echo "<fblack>Uw registratie is succesvol verwerkt!<br>Log <a href='login.php' MEDIA=screen>hier</a> in<fblack>"; 
      } 
     ?> 
    </div> 
<?php 
    include ("html_end.php"); 
?> 
+0

只是做所有的驗證,當表單提交時($ _ POST數組元素,當某一個領域是$ _POST陣列等可用) – mishu

回答

1

最簡單的方法就是在HTML中添加一個隱藏字段,然後進行測試,看是否該字段存在,並具有預期值。我傾向於使用這樣的事情...

<input type="hidden" size="8" name="action" value="submitform" /> 

然後在PHP中,你可以做...

if (isset($_POST['action']) && $_POST['action']=='submitform') { 
    ... do form validation and submission ... 
} 

使用隱藏域是好事,因爲你不需要擔心領域沒有出現,因爲它們是空的/沒有設置。例如,如果您的表單只有一個單選按鈕,並且沒有設置任何選項,則該表單參數將不會被瀏覽器傳遞。這樣你就不必擔心這樣的問題。

此外,如果你曾經有一個網頁不止一種形式,你可以使用操作參數來區分它們,並適當地處理它們。

+0

這並獲得成功!謝謝! –

0

你可以用你的PHP代碼:

if($_SERVER['REQUEST_METHOD'] == 'POST'){ 
    //handle form 
}