Thank you for getting back to me so soon. I have decided that for my app I need to synch the app with a database on a web server and NOT SQLite as the dbase is on a specific website. I keep ending up at the tutorial: Connect Android to MySQL Database Tutorial, which is great but need to see a more complete php script that shows more to connect. It looks like b4p needs a slightly different php config than with using Eclipse, i.e. what goes in the red areas?:
$query = file_get_contents("php://input");
$sth = mysql_query($query);
if (mysql_errno()) {
header("HTTP/1.1 500 Internal Server Error");
echo $query.'\n';
Many thanks in advance. :sign0163:
$query = file_get_contents("php://input");
$sth = mysql_query($query);
if (mysql_errno()) {
header("HTTP/1.1 500 Internal Server Error");
echo $query.'\n';
Many thanks in advance. :sign0163: