URLSummary php Class
I needed a way to extract additional content and details about any given website that a User might add to PickyList. So I sat down and wrote what is now dubbed URLSummary that takes a URL and outputs an XML document.
Feel free to Download URLSummary Now.
This class is written in PHP 5, and I cannot confirm or deny that it will work with any other version. Feel free to do anything you want with it - all I ask is that you consider leaving a comment letting me know if it was beneficial for you and your product.
Usage of URLSummary.php
<?
require('URLSummary.php');
// Get a URL paramater $url = $_GET['url'];
$url = 'http://icorbin.com/resume';
// Create the URLSummary Class
$urlsummary = new URLSummary();
$urlsummaryxml = $urlsummary->get($url,"xml");
// Output the Results to the browser as XML
header("Content-Type:application/xml");
echo $urlsummaryxml->asXML();
?>
A few notes
Currently URLSummary currently does not Cache any of the calls.

![[del.icio.us]](http://icorbin.com/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://icorbin.com/wp-content/plugins/bookmarkify/digg.png)
![[Facebook]](http://icorbin.com/wp-content/plugins/bookmarkify/facebook.png)
![[Google]](http://icorbin.com/wp-content/plugins/bookmarkify/google.png)
![[Ma.gnolia]](http://icorbin.com/wp-content/plugins/bookmarkify/magnolia.png)
![[MySpace]](http://icorbin.com/wp-content/plugins/bookmarkify/myspace.png)
![[Reddit]](http://icorbin.com/wp-content/plugins/bookmarkify/reddit.png)
![[Slashdot]](http://icorbin.com/wp-content/plugins/bookmarkify/slashdot.png)
![[Spurl]](http://icorbin.com/wp-content/plugins/bookmarkify/spurl.png)
![[StumbleUpon]](http://icorbin.com/wp-content/plugins/bookmarkify/stumbleupon.png)
![[Technorati]](http://icorbin.com/wp-content/plugins/bookmarkify/technorati.png)
![[Twitter]](http://icorbin.com/wp-content/plugins/bookmarkify/twitter.png)
![[Windows Live]](http://icorbin.com/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://icorbin.com/wp-content/plugins/bookmarkify/yahoo.png)
![[Email]](http://icorbin.com/wp-content/plugins/bookmarkify/email.png)








Recent Chatter