Guest User

Untitled

a guest
Apr 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. <?php
  2. /***************************************************************
  3. * Subs-AJAX.php                                                *
  4. *--------------------------------------------------------------*
  5. * Menu Editor Lite                                             *
  6. * Version 1.0                                                  *
  7. * Written By: Labradoodle-360                                  *
  8. *--------------------------------------------------------------*
  9. * Copyright 2011 Matthew Kerle - All Rights Reserved           *
  10. ***************************************************************/
  11. if (!defined('SMF'))
  12.     die('Hacking Attempt...');
  13.  
  14. function http_request_children($post_vars = array())
  15. {
  16.  
  17.     // If we didn't receive anything, we definitely don't return anything.
  18.     if (empty($post_vars))
  19.         return;
  20.  
  21.     // We're simply testing the implementation, right now.
  22.     $text = 'Hello World!';
  23.     // return $text;
  24.     echo $text;
  25.  
  26. }
Add Comment
Please, Sign In to add comment