View Single Post
Old 02-01-2007, 11:42 AM  
chonis
Confirmed User
 
Join Date: Oct 2005
Posts: 143
Try this:

$DBLINK = mysql_connect($DBHOST, $DBLOGIN, $DBPASSWORD);
mysql_select_db($DBNAME, $DBLINK);

$result = mysql_query("SELECT * FROM galleries WHERE ID = $gid",$DBLINK);

if ($myrow = mysql_fetch_array($result)) {

do {



$result2 = mysql_query("SELECT * FROM templates WHERE ID = 1",$DBLINK);

if ($mytemplate = mysql_fetch_array($result2)) {
do {
extract($myrow);
echo $modelname, $modeldir, $format;
} while ($mytemplate = mysql_fetch_array($result2));
} else {
echo "Sorry, no templates were found!";
}

} while ($myrow = mysql_fetch_array($result));
} else {
echo "Sorry, no records were found!";
}
?>
__________________
Exclusive Content From Argentina
ICQ - 272-213-644
chonis is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook