I actually dont see any connection between the first post, and your request afterwards.
The mysql request doesnt have anything to do with that string
PHP Code:
<?
$sql = "SELECT * FROM cms_page WHERE page_name = 'home'";
$query = mysql_query($sql);
// if theres only one description
$row = mysql_fetch_array($query);
echo $row['description'];
// if there are more than one
while ($row = mysql_fetch_array($query))
{
echo $row['description'];
}
I dont see any problem, why you would have to change your code.
I just pasted my code, so you see how I do it.
I think its a bit more structured