Tutorial 1, nieuwe gebruiker toevoegen_simpel


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2.  
  3. Class Registreren {
  4.  
  5. /**
  6.   * Deze service meld nieuwe gebruikers aan in de database
  7.   * @returns true of false (of het is gelukt of niet)
  8.   *
  9.   */
  10. // Maak connectie met de d_b
  11. function Registreren() {
  12. $mysql = mysql_connect( "localhost", "tut_gebruik", "mijnwachtwoord" );
  13. mysql_select_db( "Tut_Gebr1" );
  14. }
  15.  
  16. // Deze METHOD leest alle gebruikers uit
  17. function haalAlleGebruikers() {
  18.  
  19. $sql = "SELECT *
  20. FROM `Gebruikers` ORDER BY `id` DESC;";
  21.  
  22. return mysql_query( $sql );
  23. }
  24.  
  25. // Deze METHOD voegt een nieuwe gebruiker toe
  26. function voegGebruikerToe($gebruikersnaam, $voornaam, $achternaam, $emailadres, $wachtwoord) {
  27.  
  28. $sql = "INSERT INTO `Tut_Gebr1`.`gebruikers` (
  29. `id` ,
  30. `gebruikersnaam` ,
  31. `voornaam` ,
  32. `achternaam` ,
  33. `emailadres` ,
  34. `wachtwoord` )
  35. VALUES ( NULL , '$gebruikersnaam', '$voornaam', '$achternaam', '$emailadres', '$wachtwoord' );";
  36.  
  37. return mysql_query( $sql );
  38. }
  39.  
  40. }
  41.  
  42. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.