sql >> Database >  >> RDS >> Mysql

ajax-formuliervalidatie met mysqli_query

wat je kunt doen is om $.post te sturen zoals dit:

    $.post("test.php", { "post1": "something", "post2":"somethingelse" }, // those will be sent via post to test.php
  function(data){// the returned data
    console.log(data.return1); // here just logging to the console. **optional**
    console.log(data.return2); 
    // complete your process 
  }, "json"); // specifying the type as json also optional

in uw test.php

foreach($_POST as $key=> $for) {

 if(!empty($for) && $key != 'send' && $key != 'title')  {

    $usercheck =  "SELECT email FROM users WHERE email = '$for'";
    $usercheck = $db->query($usercheck);

 if($usercheck->num_rows > 0) {$x="1"; continue;}
 if($usercheck->num_rows == 0){$x="2"; break;}
 }
  }

 if($x == "2") {$data['message'] = $for." is not a regestered email";
   echo json_encode($data); // echo to pass back to $.post .. json_encode() in case of using json
   }
 if($x == "1") {  // valid - submit
  $data['message'] = 'valid'; // pass the message as valid post
echo json_encode($data); 
}

Onthoud:

Als je een formulier post, dien je in om event.preventDefault() . toe te voegen naar uw javascript-functie om het formulier handmatig af te handelen. hier je kunt er meer over vinden.



  1. Hoe het gegevenstype van de mysql-tabelkolommen te krijgen?

  2. dpkg:fout bij verwerking van pakket mysql-server (afhankelijkheidsproblemen)?

  3. primaire indexen versus secundaire indexen:prestatieverschillen

  4. IndexOf-functie in T-SQL