|
|
|
|
HEALTH GUARANTEE
Buyer has 72 hrs to take the animal to buyer’s veterinarian for health inspection for guarantee to be valid (at buyer’s expense) as seller is at no time responsible for any vet bills. If animal passes inspection the sale becomes finale. Buyer assumes any and all responsibility for dog from this day forward. If the buyer’s puppy should develop a major congenital defect within one year of purchase date, buyer must notify seller with a written statement from a licensed veterinarian. The puppy must be returned to be examined by sellers vet. If both vets. Agree to the defect the puppy will be replaced with the next available puppy. If buyer chooses to keep the defected puppy the guarantee is void.
DAM’s#_____________________________
PUPS DOB___________________________
BUYER______________________________
DATE_______________________________
SELLER_____________________________
|
|
// Open the thumbs dir...
$thumb_dir = "media/dogs_for_sale/";
$tdir = opendir($thumb_dir);
// Read file contents into an array, for sorting...
while($file = readdir($tdir))
{ if($file != '.' && $file != '..'){$my_thumb[$i] = $file;}$i++; }
$size_of = count($my_thumb); sort($my_thumb);
$k = 1; //counter to add and end table rows...
// Now create table holding thumbs/links to pdf's...
echo "\n\n";
for($j=0; $j<=$size_of-1; $j++)
{
$my_thumb[$j]; // image filename;
//////////////////////////HANDLE PHOTO CAPTION...
$dog_data = implode('', file('media/dogs_for_sale_info.txt'));
$dog_data_1 = explode("~~~", $dog_data);
//////////////////////////
if($k==1){echo "\n";}
echo "";
echo " ";
echo " $dog_data_1[$j]";
echo " | \n";
echo " | \n";
$k++;
if($k == 3){echo " \n\n | \n\n";$k = 1;}
}
echo " ";
?>
|
|
|
|
|
|
|
|