<?php
  /* Program: PetInfo_table.inc
   * Desc:    Displays table to collect pet information
   */
?>
<h4>Pet Information</h4>
<p><table>
 <tr><td style="text-align: right">Pet Category:</td>
   <td style="font-weight: bold">
       <?php echo $category ?></td>
 </tr>
 <tr><td style="text-align: right">Pet Description:</td>
   <td><input type="text" name="petDescription" 
           value="<?php echo $petDescription ?>" 
           size="65" maxlength="255">
   </td></tr>
 <tr><td style="text-align: right">Price:</td>
   <td><input type="text" name="price" 
           value="<?php echo $price ?>" size="15" 
           maxlength="15">
   </td></tr>
 <tr><td style="text-align: right">Picture file name:</td>
   <td><input type="text" name="pix" 
           value="<?php echo $pix ?>" size="25" 
           maxlength="25">
   </td></tr>
 <tr>
  <td style="text-align: right">Pet color (optional):</td>
   <td><input type="text" name="petColor" 
           value="<?php echo $petColor ?>" size="25" 
           maxlength="25">
   </td></tr>
</table>
