Advertisement
Guest User

Untitled

a guest
Jun 6th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> pieCMS </title>
  4. </head>
  5.  
  6. <body>
  7. <?php
  8. include_once("main/pieCMS.php");
  9. $obj = new pieCMS();
  10. $obj->host = 'localhost';
  11. $obj->username = 'elderwar_pieman';
  12. $obj->password = '*******';
  13. $obj->table = 'elderwar_sandbox1';
  14. $obj->connect();
  15.  
  16. if($_POST)
  17. $obj->write($_POST);
  18.  
  19. echo($_GET['admin'] == 1) ? $obj->show_backEnd() : $obj->show_frontEnd();
  20. ?>
  21. </body>
  22.  
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement