As the title describes we’re going to look at making cross domain ajax requests using JSONP I’m also going to show you how to get data from a MySQL database and encode it into a JSON string which can be parsed using JavaScript. JSON stands for JavaScript Object Notation and essentially its a method which allows us to execute cross domain ajax requests without too much fuss. This post really follows on from my article about scraping content from a page but also allows you to send and receive GET variables through the JSON request.
To give this tutorial a valid example we’re going to display a selection of product in a gallery as seen in the image below, click here to see the demo page.

First we’re going to run through getting data from our database using a PHP while loop to get a selection of rows limited to 6. In the code below you can see that we’re getting the data and generating an array. After this we simply pass the array variable $rows into the PHP function json_encode() which will format our PHP array for us.
include('connect.php');
$sql = "SELECT title, image, description FROM json_demo LIMIT 6";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
$rows[] = array(
"title" => $row['title'],
"image" => $row['image'],
"description" => $row['description']);
}
$json = json_encode($rows);
$callback = $_GET['callback'];
echo $callback.'('. $json . ')';
Below is the structured output from our json.php file.
[ { "description" : "B&O is a Danish company that designs and manufactures audio products, television sets, and telephones. It was founded in 1925 by Peter Bang and Svend Olufsen",
"image" : "1.jpg",
"title" : "B&O 5.1"
},
{ "description" : "B&O is a Danish company that designs and manufactures audio products, television sets, and telephones. It was founded in 1925 by Peter Bang and Svend Olufsen",
"image" : "2.jpg",
"title" : "B&O TV"
},
{ "description" : "Market leader in the UK. Roberts produce a wide range of DAB digital radios. Roberts is a consumer electronics company producing DAB, analogue and wi-fi ...",
"image" : "3.jpg",
"title" : "Roberts Radio"
},
{ "description" : "Toshiba is a diversified manufacturer and marketer of advanced electronic and electrical products, spanning information & communications equipment and systems",
"image" : "4.jpg",
"title" : "Toshiba TV"
},
{ "description" : "B&O is a Danish company that designs and manufactures audio products, television sets, and telephones. It was founded in 1925 by Peter Bang and Svend Olufsen",
"image" : "5.jpg",
"title" : "B&O Audio"
},
{ "description" : "B&O is a Danish company that designs and manufactures audio products, television sets, and telephones. It was founded in 1925 by Peter Bang and Svend Olufsen",
"image" : "6.jpg",
"title" : "B&O Remote"
}
]
Now we have the JSON format built we just need some JavaScript to parse the file and output our data. generating an ajax request for JSON is pretty straight forward. because what we’re doing is designed to work cross domain you can put an absolute URI in the request. With JSONP we must add a callback parameter which is passed into the beginning of the JSON string.
Once we have the data we’re cycling through the results and appending a div with the results into the page.
$("document").ready(function () {
$.getJSON('http://papermashup.com/demos/jquery-json-php/json.php?callback=?', function (data) {
$("#content").html('');
$.each(data, function (i, item) {
$("#content").append('<div class="product"><img src="http://papermashup.com/demos/jquery-json-php/images/' + item.image + '" width="135" height="138"/><div class="title">' + item.title + '</div><div class="description">' + item.description + '</div><div class="clear"></div></div>');
});
});
$("#content").fadeIn(2000);
});
how print json ?
I tried to replace jQuery 1.3.2 with jQuery 1.7.1, but it didn’t work. Do you have any idea why? Is there a way to use only jQuery 1.7.1 with this app?
Increíble ya estamos en 24/mayo/2012 y e buscado como loco desde hace 20 dias un ejemplo de la realización y consumo de un servicio con Json….
mil gcs
Muito útil, obrigado por compartilhar!
Hello ashley.
I’m looking for a long time an application. Thanks for sharing.
I would like your permission to use on my site.
However, I would like to indicate that a lack of lack of pagination. I’d like your help on what to do for paging ..
Thank you again.
Thanks you, you save my current job!
Hello ,
Will check out the demo ,
useful tutorial.
Please guide , about how we can add page numbers , if our product number increases a specific and convenient methods to deal with a situation like that.
Can you calso provide a few tips in regards to formating it with CSS.
Thanks
Pingback: Parse XML with jQuery | Papermashup.com
is it possible to load multiple images in .. (e.g. a gallery with every record..)?
how can i see json data structure after encoded, i’ve already use firebug but got confused with so many parameter…
one more
$.each(data, function (i, item)
is it iterate function ? whats the i variable for ? cause i dont see you use it as an index…
Great tutorial…
Thanks,
Pingback: ITã‚ヲスク | 2009å¹´12/27~2010å¹´1/9ã®é€±é–“ブックマーク
Hi,
Good script congratulations !
Do script works with external cross domain data.js ?
$.getJSON(‘http://domain.com/data.js?callback=?’, function (data) {
.
It is faster than HTML output, but it is not so user-friendly, when the client disabled javascript.
Nice Papermashup ! Te la rifas,
I have a question.
The connect.php class is the common db_connect.php class for MySQL?
Pingback: uberVU - social comments
Pingback: abcphp.com
Designer and web developer, Co-founder and Technical Director at Harkable.com London. Previously I worked at InMobi, Spotify and MySpace. Interests include photography and making short videos. Also an avid F1 fan. I also run Mega Infographics for your daily dose of the best infographics.
Follow us on Twitter and get in-stream updates.
Subscribe to all the Papermashup tutorials and articles straight to your RSS reader.
Sign up and get all the Papermashup tutorials straight to your inbox.
21 discussions around Build a JSON and PHP product gallery