For some (strange, I know) reason I would like to copy the content of a
webpage into a database.

I would like to have code like

$whocares = include ("http://www.microsoft.nl";);
$query = "insert into html values ($whocares,...)";
..

However, include can not copy the content to a variable. Does anyone
have an idea how to circumvent this problem?

Try:

$fp = fopen ("http://www.example.com/";, "r");
$data = "";
while(!feof($fp))
{
	$data .= fread($fp,1024);
}

//$data now contains all the html for the website

fclose($fp);

--
Kyle Gibson
admin(at)frozenonline.com
http://www.frozenonline.com/


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to