Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.     header('Content-Type: application/javascript; charset=utf-8');
  3.     $callback = $_GET['callback'];
  4.     $q = $_GET['q'];
  5.     $json = json_encode(['apple', 'mango']);
  6.     echo "$callback($json);";
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement