Hello Experts!
I'm trying to add a right section in my application. Here's the a picture:

This is the code that is behind the snippet:
$sql = "select htmltext from tbl_static where tbl_static.ID=3";
$rs = CustomQuery($sql);
$data = db_fetch_array($rs);
echo $data["htmltext"];
It does not show anything. Its just blank! Anyone have any ideas how I can make this work?
Thanks
I forgot to mention I did try:
echo "This is a test";
That didn't work either.