php - Android App not syncing with database -
the andriod app i'm developing using http gets/posts using php files on website perform transactions on mysql database. on php side, wrap data json parse on java end of app when receiving response. modified 1 of tables , eliminated unnecessary values table. when poll using php scripts website, polls correctly. when use app, uses same php script polling, returns additional values removed database. i've restarted eclipse, cleaned project, , restarted android vdm refresh it; however, continues find values removed. ideas going on? here php script i'm connecting app: <?php mysql_connect("localhost", "******", "******"); mysql_select_db("bouncet2_pogoapp"); $query = "select * event_table order event asc"; $sql = mysql_query($query); while($row=mysql_fetch_assoc($sql)) $output[]=$row; print(json_encode($output)); mysql_close(); ?> as code in app using script: try { string response = customhttpclient.executehttpget(...