I\'m trying to use php\'s file_get_content(\'a url\');
The thing is if the url has \'&\' in it, for example
file_get_contents(\'http://www.google.c
Try replace simple quote ' for double quote ":
'
"
file_get_contents("http://www.google.com/?var1=1&var2=2")
it seems odd, but works!