need help with implementing this piece of code here. This is supposed to submit the information contained in $data_array to http://www.schrenk.com/search.php but unfortunatly it does not seem to be working. any help would be deeply appreciated.
include("C:\wamp\bin\php\php5.2.6\LIB_http.php");
$action = "http://www.schrenk.com/search.php";
$method = "GET";
$ref = " ";
$data_array['term'] = "hello";
$data_array['sort'] = "up";
$response = http_get_form($target = $action, $ref, $method, $data_array, EXCL_HEAD);
echo $response;
thank you