The php command file_get_contents will get the HTML contents of a web page
from the php manual
<?php
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;
?>
The php command file_get_contents will get the HTML contents of a web page
from the php manual
<?php
$homepage = file_get_contents('http://www.example.com/');
echo $homepage;
?>
Thanks to all of you for giving me a useful information regarding to curl . I really appreciate your effort. if any one have more information regarding to this topic please suggest me.
Thanks with Sharing us
Last edited by apptunix1; Mar 03rd, 2017 at 05:28 AM.
Check out this static website for an instance FamousAstrologer.co
Last edited by mlseim; Jun 15th, 2017 at 07:04 AM.
URLs can only be sent over the Internet using the ASCII character-set. If a URL contains characters outside the ASCII set, the URL has to be converted.
URL encoding converts non-ASCII characters into a format that can be transmitted over the Internet
URL encoding replaces non-ASCII characters with a "%" followed by hexadecimal digits.
URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign, or %20.
HTML 101: <a href="http://www.website.com/page.html">Click here</a>"