Class is now in a working state

This commit is contained in:
2014-07-31 16:43:18 +02:00
parent 5de6e1cabf
commit e2a443d7f9
2 changed files with 51 additions and 7 deletions

9
httptest.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$ch = curl_init("http://belanna.nixnet.jke/loggedin.txt");
$data;
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);
//print "$data\n";
?>