Skip to content

Instantly share code, notes, and snippets.

@calvinchoy
Created August 16, 2013 09:17
Show Gist options
  • Save calvinchoy/6248453 to your computer and use it in GitHub Desktop.
Save calvinchoy/6248453 to your computer and use it in GitHub Desktop.
PHP - JSONP Callback
//SERVER SIDE
<?php
$array_data = array();
$json_data = json_encode($array_data);
echo $_GET['callback'] . '(' . $json_data . ')';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment