Author Topic: PHP/SQL functions or interface  (Read 601 times)

Along the same vein with Greek2Me's TCP library, is there some addon or function(s) that allows you to use PHP to connect to an SQLdatabase? Could you, for example, send a $_GET request to mysite.php/files?name= where you can pull a description of a file from the files page through defining "name" as something, such as mysite.php/files?name=monday ?

Well, you can use the TCP library to connect to a server and send PHP requests (auth.blockland.us GET /authQuery2.php?NAME=hi), the website should parse the request and use their database to retrieve something based on what you sent them and then send back results as you would use a normal browser.

Well, you can use the TCP library to connect to a server and send PHP requests (auth.blockland.us GET /authQuery2.php?NAME=hi), the website should parse the request and use their database to retrieve something based on what you sent them and then send back results as you would use a normal browser.

Right! Because it doesn't matter if you attempt to connect in the request, it matters if the page you use to execute a request does! Thank you.