Guest User

Untitled

a guest
May 26th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. function __autoload($class_name)
  4. {
  5. require_once "include/class.".$class_name.'.php';
  6. }
  7.  
  8. $blaat = new klanten;
  9. $blaat->soort = "TEST TEST";
  10. echo $blaat->soort;
  11.  
  12. ?>
Add Comment
Please, Sign In to add comment