How to show 6 latest product reviews from Zen-Cart?

If you like to show 6 random product reviews, you can do like this:
Configuration –> Maximum Values –> Random Product Reviews for SideBox
and set “How many products do you want to display in this sidebox?” to 6.

If you need to show 6 latest product reviews from all of your product,how to do then?
Add the following code at proper places, say footer.php:
<code>
<div>
<?php
$qry = mysql_query(“SELECT reviews_text,cart_reviews_description.reviews_id from cart_reviews,cart_reviews_description where cart_reviews_description.reviews_id=cart_reviews.reviews_id and status=’1′”);

while($data = mysql_fetch_array($qry))
{
?>
<ul>

<li><?=$data[‘reviews_text’]?></li>
</ul>
<?
}
?>
</div></code>