How to Connect php and android to retrieve all data in a database table
How to Retrieve all data (all columns) inside database table to android
any helpful link or any youtube video this is php code I wanna retrieve
all data inside (member) table using Android I wanna android COde thanks
for any help and any guide..
$your_querry="select * from androidlogin ";
$query=mysql_query($your_querry);
$list=array();
while($row=mysql_fetch_assoc($query))
{
$list[]=$row;
}
echo json_encode($list);
No comments:
Post a Comment