n0v3yak Posted September 17, 2008 Share Posted September 17, 2008 Ok I have a quick little script here <?php $curl = curl_init(); $fp = fopen("l0g.txt", "w"); curl_setopt ($curl, CURLOPT_URL, "http://www.google.com"); curl_setopt($curl, CURLOPT_FILE, $fp); curl_exec ($curl); curl_close ($curl); ?> Now I wanted to make a search bar and then you put let's say "[email protected]" and then click the GO! and then it runs the curl script. Then I wanted to perhaps make an iframe below and it displays the Google results for [email protected]. Any help on how I would do this Link to comment https://forums.phpfreaks.com/topic/124579-curl-help-htmlcss/ Share on other sites More sharing options...
n0v3yak Posted September 17, 2008 Author Share Posted September 17, 2008 bump: any help ??? Link to comment https://forums.phpfreaks.com/topic/124579-curl-help-htmlcss/#findComment-643471 Share on other sites More sharing options...
genericnumber1 Posted September 17, 2008 Share Posted September 17, 2008 Unfortunately, this is against the google ToS and we can't help you Link to comment https://forums.phpfreaks.com/topic/124579-curl-help-htmlcss/#findComment-643485 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.