hey, I have never really actually programmed php, but I have a phpBB forum, and I have a MOD for my forum which needs to use the fsockopen function. However my host does not allow me to use this function. So this wrapper looks great but I am not sure exactly how to use it.
The script which tries to use the fsockopen function is in my /phpBB2 directory, so do I just put this wrapper into that directory as 'wrapper.php' or something?
and then the part in my script which uses the function is:
Code:
$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);
so how can I use the wrapper to do the same thing? Any advice would be great, thank you.