Quote:
Originally Posted by roganoli
PHP Code:
$html = file_get_contents_curl("http://example.com/");
How to put <? echo "$url"; ?> via echo in the URL above... is possible?
I was wondering how to make it work.
Thanks for help 
|
revisiting for a second.
If what you are tring to do is display the html from example.com then once you have the file_get_contents_curl() changed to file_get_contents() then you would just echo $html.
So something like:
$html = file_get_contentsl("http://example.com/");
echo $html;
.