Hi
I checked the string which i am passing to the function and it works fine and generates desired output but when i try to pass the same via the function it give me this error.
Below is the string i am passing
$filename = "https://www.scan.co.uk/test/admin.php?partnerid={PID}&wid={WID}&action=11&valid=01012010"
$file = fopen($filename,"r",$use_include_path);
if ($file) {
while (!feof($file)) $data .= fread($file, 1024);
print $data;
break;
fclose($file);
}
else {
print "file not open";
}
return $data;