Hey I'm here. What I am wondering is why you don't just have that link in your template file....
PHP Code:
$reviewb = $DB_site->query("SELECT * FROM reviews");
while($ra = $DB_site->fetch_array($reviewb)) {
eval("dooutput(\"".gettemplate("reviews_list")."\");");
}
Can you not just have that link that I took out in your template? Here is how the function call would look:
loop_template("*", "reviews","list", "reviews");
In your template the variables will be available to you like this:
$reviews[list_fieldname]
All other variables you want to use that arent taken from the mysql query are just available how you would expect them.