o0O0o.o0O0o
04-24-2008, 01:39 AM
hi,
I am using AJAX with jquery . The basic syntax for displaying a file
redBoxes.php info is below
$('#testButton').click(function(){
$.get(
'redBoxes.php',
{a:1, b:2, c:3},
function(data) { alert(data); }
);
Now i want to know how to return variable through jquery e,g
i have inserted data in database and in the php script i am returing value 1 which signifies that data has been inserted in database . How can compare that value . something like
if(data == 1)
alert("data has displayed")
I can display that text in php file as well , but i want to know how can i work on the return data
I am using AJAX with jquery . The basic syntax for displaying a file
redBoxes.php info is below
$('#testButton').click(function(){
$.get(
'redBoxes.php',
{a:1, b:2, c:3},
function(data) { alert(data); }
);
Now i want to know how to return variable through jquery e,g
i have inserted data in database and in the php script i am returing value 1 which signifies that data has been inserted in database . How can compare that value . something like
if(data == 1)
alert("data has displayed")
I can display that text in php file as well , but i want to know how can i work on the return data