1

need to pass data to android app through ajax by using php. the data is pulled from mysql database through a select query

please provide me code example how to perform the task i had search the internet and i find the below code for reference http://www.grobmeier.de/android-does-not-fire-ajax-reqests-because-they-are-caches-ajax-requests-at-least-on-jquery-mobile-10072011.html#.UGvLbU3A-RI

how to perform the select query to fetch the data array. please correct me if the example is not proper.

$.ajax({
       url: "yoururl.html",
       context: document.body,
       cache : false,
       data: { 
            username :  $('#username').val(), 
            password :  $('#password').val(), 
       },
       success: function ( data ) {
           // do something
      }
});
4

1 回答 1

0

您需要的是一个常规的 HTTP 请求(当然是由 AJAX 发出的):您通过您选择的方法将变量发送到服务器。类似的东西:http://www.example.com/script.php?var1=foo&var2=bar这些变量可以在 script.php 中以这种方式访问​​:

<?php

echo $_GET['var1'], PHP_EOL; // shows foo
echo $_GET['var2'], PHP_EOL; // shows bar

?>

如果您使用 POST 方法而不是 GET 方法,则必须使用它$_POST[<whatever>]来访问您的变量。

一旦你在 PHP 中获得了值,你就可以执行你需要持久化该数据的查询。

有很多这样的互联网,如果你做一个最小的搜索,你会找到你想要的。

于 2012-10-03T06:54:34.537 回答