Saturday, February 03, 2007
www.flickr.com
This is a Flickr badge showing photos in a set called Pics I Like. Make your own badge here.
Current Reads
@ $db = mysql_pconnect("localhost", "ra12deg", "SqJfmmqH"); if (!$db) { echo "Error: Could not connect to database."; exit; } mysql_select_db("d12degrees_org"); $query = "select isbn, title, authorfirst, authorlast, datestart from reads where `dateend` = '0000-00-00' order by datestart desc limit 0, 4"; $result = mysql_query($query); $num_results = mysql_numrows($result); for ($i=0; $i <$num_results; $i++) { $row = mysql_fetch_array($result); echo ""; echo "
"; echo ""; echo htmlspecialchars( stripslashes($row["title"])); echo " ("; echo htmlspecialchars( stripslashes($row["authorfirst"])); echo " "; echo htmlspecialchars( stripslashes($row["authorlast"])); echo ")
"; } ?>
Completed Reads
@ $db = mysql_pconnect("localhost", "ra12deg", "SqJfmmqH"); if (!$db) { echo "Error: Could not connect to database."; exit; } mysql_select_db("d12degrees_org"); $query = "select isbn, title, authorfirst, authorlast, datestart from reads where `dateend` != '0000-00-00' order by authorlast limit 0, 10"; $result = mysql_query($query); $num_results = mysql_numrows($result); for ($i=0; $i <$num_results; $i++) { $row = mysql_fetch_array($result); echo ""; echo htmlspecialchars( stripslashes($row["title"])); echo " ("; echo htmlspecialchars( stripslashes($row["authorfirst"])); echo " "; echo htmlspecialchars( stripslashes($row["authorlast"])); echo ")
"; } ?>
Top of the Playlist
@ $db = mysql_pconnect("localhost", "ra12deg", "SqJfmmqH"); if (!$db) { echo "Error: Could not connect to database."; exit; } mysql_select_db("d12degrees_org"); $query = "select isbn, title, artist from tunes order by artist limit 0, 4"; $result = mysql_query($query); $num_results = mysql_numrows($result); for ($i=0; $i <$num_results; $i++) { $row = mysql_fetch_array($result); echo ""; echo "
"; echo ""; echo htmlspecialchars( stripslashes($row["title"])); echo " ("; echo htmlspecialchars( stripslashes($row["artist"])); echo ")
"; } ?>

2 Comments:
NO, this is great video. Now if we can just get her to turn.
Yes, because the video has no sound, you don't get hear her hit whatever obstacle is in her path, then go "AAAAGGGGHHHHHH," which as near as I can figure is one-year-old talk for "Get over here and turn this thing for me."
Post a Comment
<< Home