A wab scrapping means display content of other site
in your site without access any file or server detail using php.also you can
easily display content of other site in your website page and make your site
more popular and also user interaction.
Live Demo
<?php
$url = 'http://www.google.com/';
$output = file_get_contents($url);
echo $output;
?>
0 comments:
Post a Comment