Well, if you cannot use Curl
or fsockopen
or exec wget
or any of the other suggestions to make it work from PHP, it is a lost cause. Almost. If you dont have to have the URL called during script execution, you could let the client call the url by adding an WebBug element to the html you send back to browser (assuming this is what you do), e.g.
<img src="http://www.example.com/trigger.php?arg1=foo" width="1" height="1"/>
If you need the response from the script, you could use an iframe
, though you should check if that element is part of the Doctype you are using. You could also try via JavaScript, but have to find a way to bypass the Same Origin Policy most browsers enforce.
If that's still not solving your problem, try another free hosting service or consider switching to paid hosting. You can get a decent setup for below ten bucks nowadays.