Hi.
I'm trying to move a block from the left to the right, but I'm experiencing a weird problem. I have a block on the left that grabs links using PHP code, and it works perfectly.
Text Formatted Code
<?php
$db = mysql_connect("localhost", "*****", "*****");
mysql_select_db("geeklog", $db);
$result = mysql_query("SELECT * FROM gl_links ORDER BY title ASC", $db);
while ($myrow = mysql_fetch_array($result))
{
echo "<a href='".$myrow["url"]."' target='_new'>".$myrow["title"]."</a><br>";
}
?>
But, when I make one simple change, moving from the left to the right, instead of having a nice little list of links, only the following displays:
Blogs I Read
".$myrow["title"]."
"; } ?>
So for some reason, just switching from right to left tells geeklog not to display the generated html but instead just display the code. Any idea where I could change this?
Thank You.
nathan