Print("
\n");
Print("Subnote
\n");
$mysql_link = mysql_connect("localhost", "plumbum", "17pb10");
mysql_select_db("subnote");
//$result_noteno = mysql_query("SELECT noteno, imageartist, imagetitle, imagedescription, imageartistwebaddress, imageimagefile, imageprintstate, imageprintdate FROM noteno WHERE noteno='$noteno'");
$result_details_images = mysql_query("SELECT nw_id, nw_colour, nw_artist, nw_artistemail, nw_artistwebpage, nw_title, nw_description, nw_imagefile, nw_imagetext FROM noteworks WHERE nw_id='$nw_id'");
while($row = mysql_fetch_row($result_details_images))
{
$item_image_nw_id=$row[0];
$item_image_nw_colour=$row[1];
$item_image_nw_artist=$row[2];
$item_image_nw_artistemail=$row[3];
$item_image_nw_artistwebpage = $row[4];
$item_image_nw_title=$row[5];
$item_image_nw_description=$row[6];
$item_image_nw_imagefile=$row[7];
$item_image_nw_imagetext=$row[8];
Print("
\n");
Print("\n");
}
Print("\n");
?>