Hi there ! I've been given a PHP script that parses a webpage and strips out the URL's of images contained within it. It then assembles these using ImageMagick.
The guy that gave me the script assures me that it works but I can't get it working on my system.
It all appears to hang on the file() function because the line:
$mappage=file($pagehref);
returns nothing even though $pagehref is a valid URL.
Looking through the PHP on-line documentation, it would appear that I need to "have PHP compiled with URL compliant fopen wrappers in order to use file on links."
How do I do this ?
Thanks
Phil Lee