PhP to get meta data from a website

I have to say this is freakin sweet, especially if you have a links page to capture description data, etc.  Here is the code

<?php
// Assuming the above tags are at www.example.com
$tags = get_meta_tags(‘http://www.putAwebsiteInHere.com/’);

// Notice how the keys are all lowercase now, and
// how . was replaced by _ in the key.
echo ‘author=’.$tags[‘author’].'<br><br>’;       // name
echo ‘keywords=’.$tags[‘keywords’].'<br><br>’;     // php documentation
echo ‘description=’.$tags[‘description’].'<br><br>’;  // a php manual
echo ‘geo_position=’.$tags[‘geo_position’].'<br><br>’; // 49.33;-86.59
?>

Obligatory Will Rogers quotes

Half our life is spent trying to find something to do with the time we have rushed through life trying to save.

There are 3 kinds of people the one that learns by reading. The few who learn by observation. The rest of them have to pee on the electric fence for themselves.

The road to success is dotted with many tempting parking spaces.