On Mon, 2002-02-04 at 19:21, Philip J. Newman wrote:
> Is someone able to point me into the right direction.
> 
> I have a disire to make a database of hyperlinks.  At the moment the process is, 
>some what slow, as I have to input all the data by hand.  I would like some way that 
>I can just put the URL in and it fetches the META TAG information.
> 
> If you can help (o;
 
Something like this? ;) Works with fopen wrappers, too.

  http://www.php.net/manual/en/function.get-meta-tags.php

Quick test:

<?php
error_reporting(E_ALL);

$foo = get_meta_tags('http://www.thebuttlesschaps.com');
print_r($foo);
?>


Hope this helps,

Torben

> Philip J. Newman
> Philip's Domain - Internet Project.
> http://www.philipsdomain.com/
> [EMAIL PROTECTED]
> Phone: +64 25 6144012
-- 
 Torben Wilson <[EMAIL PROTECTED]>
 http://www.thebuttlesschaps.com
 http://www.hybrid17.com
 http://www.inflatableeye.com
 +1.604.709.0506


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

Reply via email to