08.08.2012, 03:07
For the php side of the script you wound't really need a get varible to be ran though the url. Just have your php page list your stations.
So in Pawn you would call your page via
Then you want to make the 'HttpResult' public callback.
Hope that is enough information to get you started.
So in Pawn you would call your page via
pawn Code:
HTTP(0, HTTP_GET, "yourdomain.com/yourscript.php", "", "HttpResult");
pawn Code:
public HttpResult(index, response_code, data[])
{
// data[] is your PHP script ouputed source code.
}