I have stored the contents of a web page using:
$src = implode("", file($url));In the source contains: <title>Random title here</title> What method can I use to store the title of the page into a variable? Keep in mind that the above string is part of an entire html document. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

