if($user_id)
{
?>
$mysql_product = "select * from product where id='$user_id'";
$rs_product = mysql_query($mysql_product);
$row_product = mysql_fetch_assoc($rs_product)
?>
echo $row_product['name']; ?>
if($row_product['image_a'])
{
?>

" height="210" width="210">
}
if($row_product['image_b'])
{
?>

" height="210" width="210">
}
if($row_product['image_c'])
{
?>

" height="210" width="210">
}
?>
echo $row_product['desc'];
?>
}
else
{
?>
$mysql_product="select * from product";
$rs_product=mysql_query($mysql_product);
$row_product=mysql_fetch_assoc($rs_product)
?>
echo $row_product['name'];?>
if($row_product['image_a'])
{
?>

" height="210" width="210">
}
if($row_product['image_b'])
{
?>

" height="210" width="210">
}
if($row_product['image_c'])
{
?>

" height="210" width="210">
}
?>
echo $row_product['desc'];
?>
}
?>