Nieuw lid |
|
Hey, ik heb een scriptje waarmet php een page in de achtergrond laat laden, nu is mijn bedoeling ALLE url's die er op die pagina aanwezig zijn te kunnen krijgen, en daarna toe te voegen in mysql.
Dit is hetgeen wat ik al heb:
<?php
$site = curl_init();
curl_setopt($site, CURLOPT_URL,"http://www.site.com");
curl_setopt($site, CURLOPT_TIMEOUT, 10); //times out after 4s
curl_setopt($site, CURLOPT_RETURNTRANSFER,1);
curl_setopt($site, CURLOPT_REFERER, "http://www.site.com");
curl_setopt($site, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($site, CURLOPT_POST, 1);
$result=curl_exec ($site);
//Hier zou dus het stukje moeten komen dat alle url's zoekt op de webpagina $result is dus de webpagina html
curl_close ($site);
?>
<?php $site = curl_init(); curl_setopt($site, CURLOPT_URL,"http://www.site.com"); curl_setopt($site, CURLOPT_TIMEOUT, 10); //times out after 4s curl_setopt($site, CURLOPT_RETURNTRANSFER,1); curl_setopt($site, CURLOPT_REFERER, "http://www.site.com"); curl_setopt($site, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"); curl_setopt($site, CURLOPT_POST, 1); $result=curl_exec ($site); //Hier zou dus het stukje moeten komen dat alle url's zoekt op de webpagina $result is dus de webpagina html curl_close ($site); ?>
nemesiskoen edit: code tags gebruiken
|