racquets on clearance

Closeout and Clearance Frames


[insert_php]
global $wpdb;
$oldm = ‘aaaa’;
$starter = 1;

$query = ‘SELECT * FROM jos_racquets where display =”Y” and cate = “New” order by manufacturer asc ‘;
$options = $wpdb->get_results($query);

echo “

“;
echo “

“;

foreach ($options as $category)
{

if ($starter == 1)
{
$starter = 2;
echo ‘

‘; }
else
{
if ($oldm <> $category->manufacturer)
{
echo ‘

‘;
}

echo ‘

‘;
}
$oldm = $category->manufacturer;

}
echo ‘

 Brand  Name  Grip  Strings  Price
 ‘.$category->manufacturer.’   ‘.
$category->name.’
 ‘. $category->grip.’  ‘.
$category->strings.’
 \$’.$category->price.’
 
 ‘.$category->manufacturer.’   ‘.
$category->name.’
 ‘. $category->grip.’  ‘.
$category->strings.’
 \$’.$category->price.’

‘;

echo ‘

Please phone (610) 525-2504 to confirm that the Racquet is available

‘;

[/insert_php]