<?php
// product information
$product_name        = "Gateway Laptop";
$product_description = "The Gateway MX6629 laptop delivers desktop-class performance and features.";
$product_image       = "images/laptop.jpg";
$product_price       = "\$1499.98";


echo <<<END
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <title>PHP Exercise 1 - Echo and Variables</title>

 <style type="text/css">
  <!--
   #left_panel {
    width: 250px;
    height: 195px;
   }
   
   #right_panel {
    width: 251px;
    height: 195px;
    background-color: #FFFFFF;
    padding: 30px;
    font-family: Arial, Helvetica, sans-serif;
   }
   
   #title {
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 10px;
   }
   
   #desc {
    font-size: 11px;
    line-height: 16px;
   }
   
   #price {
    font-weight: bold;
    font-size: 16px;
    padding-top: 10px;
   }
  //-->
 </style>
</head>
<body>

<table cellspacing="0" cellpadding="0">
 <tr>
  <td id="left_panel"><img src="{$product_image}" alt=""></td>
  <td id="right_panel">
   <div id="title">{$product_name}</div>
   <div id="desc">{$product_description}</div>
   <div id="price">{$product_price}</div>
  </td>
 </tr>
</table>

</body>
</html>
END;
?>