Source code:
<?php
  include ('include_pet_fns.php');
  // The shopping cart needs sessions, so we start one
  session_start();
  //header();
  do_html_header("Register");
  // create short variable names
        $username = $_POST['username'];
     /*
        $password = $_POST['password'];
        $repassword = $_POST['repassword'];
        $email = $_POST['email'];
        $name = $_POST['name'];
        $address = $_POST['address'];
        $city = $_POST['city'];
        $zip = $_POST['zip'];
        $phone = $_POST['phone'];
        $country = $_POST['country'];
     */
  echo '<table border="0" cellspacing="0" cellpadding="0" width="750">';
  echo '<tr>';
 echo  '<td width="50%" style="padding-left:5px;padding-right:5px">';
 echo '<img src="images/garfield_up.gif" width="200" height="300" />';
 echo  '</td>';
 echo  '<td style="padding-right:115px;padding-left:5px">';
 display_register_form($username,'');
 echo  '</td>';
 echo '</tr>';
  echo '<tr>';
 echo '<td> </td><td> </td>';
 echo '</tr>';
 echo '</table>';
 do_html_footer();
?>