Advertisement
Guest User

Untitled

a guest
Dec 1st, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_action('wp_ajax_MyAjaxFunction', 'jwl_action_callback');
  2. function jwl_action_callback() {
  3.  
  4.     $whatever = $_POST['serial'];
  5.  
  6.         var_dump($whatever);
  7.         print 'hello';
  8.  
  9.     die(); // this is required to return a proper result
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement