This week's instructions say the TLC blogroll is RSS-powered. In that case, pay no attention to the php behind the curtain: Yeah, OK, I fixed the page so it doesn't say that anymore. But maybe someone still wants to see a little php :)
Wow! Here are all the blogs registered in TLC:
";
$incs = "E:\wamp\www\\tlc\db_info.inc";
include($incs);
$cnx = mysqli_connect($host, $user, $password, $dbname);
$sql = "SELECT * FROM userblogs ORDER BY library DESC, blogname";
$result = mysqli_query($cnx,$sql);
echo "
\n";
while($row = mysqli_fetch_assoc($result))
{
$n = $row['blogname'];
$u = $row['blogurl'];
$l = $row['library'];
echo "$n | ($l) |
\n";
}
echo "
";
?>
Somebody probably has a list of all the RSS feeds for our blogs, but it ain't me :)
No comments:
Post a Comment