Ocs-server/Gfx4/Network utilities: Difference between revisions

From KDE Community Wiki
(Created page with "GFX permits also to interact with other APIs and websites through ENetworkSocket. ENetworkSocket is an object that makes http requests with get and post data to the specified ...")
(No difference)

Revision as of 16:38, 28 July 2015

GFX permits also to interact with other APIs and websites through ENetworkSocket. ENetworkSocket is an object that makes http requests with get and post data to the specified address.

$s = new ENetworkSocket("http://localhost"); $c = $s->get("index.php");

This will set content of $c to the content of http://localhost/index.php performing a get request.

$postdata = array( "name" => "john", "surname" => "smith" )

$s = new ENetworkSocket("http://localhost"); $c = $s->post("index.php", $postdata);

This will set content of $c to the content of http://localhost/index.php performing a post request and sending $postdata as $_POST value.