form when form is submitted?
it is done by writing the follwing lines
under form -
<input type="hidden" name="kennel"
value="<? echo $kennel; ?>">
here we passing the variable kennel.
after the form submitted,you can get the
value of the variable and use by this way -
if(isset($_POST["kennel"]))
$kennel=$_POST["kennel"];
hope it helped...