Advertisement
Guest User

Untitled

a guest
Feb 27th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. class Xcrud_config
  3. {
  4. public static $dbname = 'testxcrud';
  5. public static $dbuser = 'root';
  6. public static $dbpass = '';
  7. public static $dbhost = 'localhost';
  8. }
  9. ?>
  10.  
  11. <?php
  12. include('Xcrud_config.php');
  13. $xcrud = Xcrud::get_instance();
  14. $xcrud->table('persons');
  15. echo $xcrud->render();
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement