Advertisement
Guest User

register_submit.php

a guest
Feb 2nd, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.14 KB | None | 0 0
  1. <?php
  2. /* #################################################################### \
  3. ||                                                                     ||
  4. || TwinkieCMS - Use of this software is strictly prohibited.           *#
  5. || # Copyright (C) 2014 lD@vidl.                                       *#
  6. ||---------------------------------------------------------------------*#
  7. ||---------------------------------------------------------------------*#
  8. || Script pensado para la gestión de retroservers Habbo.               *#
  9. || Tanto el script como los autores del mismo no tienen ningún tipo    *#
  10. || de asociación con Habbo y/o Sulake Oy Corp. Por lo tanto, estos no  *#
  11. || se hacen responsables del uso que el usuario le dé.                 *#
  12. ||                                                                     ||
  13. \ ################################################################### */
  14. ob_start();
  15.         require_once 'inc/core.php';
  16.        
  17.         if($user->register_now())
  18.         {
  19.                 echo "This would work";
  20.         }
  21.         else
  22.         {
  23.                 echo "This would not work";
  24.         }
  25. ob_end_flush(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement