/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $username = 'your_username'; $password = 'your_password'; $cache_file = '/tmp/blogroll.xml'; // check for updates to del.icio.us account { // del.icio.us has been updated since last cache; recache $data = file_get_contents("https://{$username}:{$password}@api.del.icio.us/v1/posts/all?tag=blogroll"); } // read links from cached del.icio.us data foreach ($blogroll->post as $blog) { echo "</a><br />\n"; } ?>
URL: http://benramsey.com/archives/generating-opml-from-delicious/