php - Changing the content of jquery mobile -
php - Changing the content of jquery mobile -
i developing mobile app using jquery mobile framework , alter page content using javascript , ajax don't expected result.could help me please. here code :
connection.php
class="lang-php prettyprint-override"><?php $dbhost="localhost"; $dbuser="root"; $dbpass=""; $db="mobileapp"; $conn=mysql_connect($dbhost,$dbuser,$dbpass) or die("could not connect"); mysql_select_db($db); ?>
index1.php
class="lang-php prettyprint-override"><?php include 'connection.php'; $fetch="select * users"; /** $result=mysql_query($query) or die(mysql_error()); //while($person=mysql_fetch_array($result)){ $person=mysql_fetch_array($result) echo json_encode($person);**/ while ($row = mysql_fetch_array($fetch, mysql_assoc)) { $row_array['id'] = $row['id']; $row_array['username'] = $row['username']; $row_array['city'] = $row['city']; array_push($return_arr,$row_array); } echo json_encode($return_arr); //} ?>
index.html
class="lang-html prettyprint-override"><html> <head> <title>my page</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-.0.1.min.css" /> <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> <script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"> </script> <script type="text/javascript" src="global.js"> </script> </head> <body> <div data-role="page" id="page1"> <div data-role="header"> <h1>railway station</h1> </div><!-- /header --> <div data-role="content"> <input type="button" value="refresh" id="submit" data-icon="refresh" /></br> <ul data-role="listview" id="list"> </ul> <script id="source" language="javascript" type="text/javascript"> $(document).live('pageinit',function (event) { $.ajax({ url: 'index1.php', data:"", datatype: 'json', success: function(rows) { for(var i=0;i<rows.length;i++) { var row = rows[i]; var id = row[0]; var name= row[1]; var city= row[2]; $('#list').append("<li>id:"+id+"name:"+name+"city:"+city+"</li>"); } }; }); }); </script> </div> </div> <div data-role="footer"> <h1>©ameypat.all rights reserved.</h1> </div><!-- /footer --> </body> </html>
php jquery json jquery-mobile
Comments
Post a Comment