I am working on an android app and building my php scripts for accessing the db. I want to test them via my browser - get the correct response, error handling etc etc.
how do i add my parameters tot he url. This is my attempt but seems to neither error nor work.
http://X.X.X.X/myphpScript.php?param1=test¶m2=test
<?php
// array for JSON response
$response = array();
// check for required fields
if (isset($_POST['param1']) && isset($_POST['param2']))
{
//do stuff
}
?>