thanks to all but after more search on google i find how i can make all this thanks again for your support ! best forum ever !
anyway this is my code if i can help someone who need this is easy ...
Code:
<?php
$uri = $_SERVER['REQUEST_URI'];
$uri = str_replace('/google.php', '', $uri);
$homepage = file_get_contents('http://www.google.com/'.$uri);
$homepage = str_replace('Google', 'YourWebsiteName', $homepage);
echo $homepage;
?>
and with little more work you can make your web search 
Last edited by ZoC; 04-27-2010 at 07:34 PM..
|