| Firstinkjet Ltd, Unit 1B, Old Station Yard, Kingsbridge, Devon, TQ7 1ES

|

1. 35000 Wholesale Products Computers, Motherboards, DvD, GPS, Mp3/Mp4, DVR, Cameras, Camcorders, Scanners, PDA, Printers, Home Theater, Networking, Modems, Memory, Monitors, Portable DVD, Security, Mobile Video, Speakers, Shredders, USB/Hubs, Video Cards
Click here to add your link to our directory >>
|
Type your inkjet cartridge manufacturer code here:
|
// selecting hot offers from a database
$res = mysql_query("SELECT * FROM products WHERE products_special = '1' AND products_status = '1' ORDER BY products_sectionid");
$num = mysql_num_rows($res);
if ($num > 0)
{
$wynik = floor($num/2);
$factor = $num%2;
$rows = $wynik+$factor;
$i = 0;
$k = 1;
while ($set = mysql_fetch_array($res))
{
extract($set);
if ($k%2==1) echo "";
echo "
";
if ($products_sectionid=='3')
{
echo shoplink("index.php?action=products&products_id=$products_id&origin=main","$products_model - $products_name")." ";
}
else
{
echo "$products_name Replacement for: $products_model ";
}
if ($products_picture!="")
{
if ($products_sectionid=='3') { echo shoplink("index.php?action=products&products_id=$products_id&origin=main"," "); }
else { echo " "; }
echo " ";
}
$sectionid=$products_sectionid; // KJM 10/4/08
if ($products_special_info!="") echo toview($products_special_info)." ";
$globalsql = "SELECT * FROM discounts WHERE global_sectionid = '$sectionid'";
$globalres = mysql_query($globalsql);
$globalset = mysql_fetch_array($globalres);
$global_active = $globalset['global_active'];
$global_discount = $globalset['global_discount'];
$global_force = $globalset['global_force'];
mysql_free_result($globalres);
if ($global_active=="1" and $global_force=="1")
{
$lower_price = $products_price - ($products_price*$global_discount/100);
$lower_price = number_format($lower_price,2);
echo "Price: £ $products_price Special offer: £ $lower_price (incl. VAT)";
}
else if ($global_active=="1" and $global_force=="0")
{
if ($products_discount!="0" and $products_discount_active=="1")
{
$lower_price = $products_price - ($products_price*$products_discount/100);
$lower_price = number_format($lower_price,2);
echo "Price: £ $products_price Special offer: £ $lower_price (incl. VAT)";
}
else
{
$lower_price = $products_price - ($products_price*$global_discount/100);
$lower_price = number_format($lower_price,2);
echo "Price: £ $products_price Special offer: £ $lower_price (incl. VAT)";
}
}
else
{
if ($products_discount!="0" and $products_discount_active=="1")
{
$lower_price = $products_price - ($products_price*$products_discount/100);
$lower_price = number_format($lower_price,2);
echo "Price: £ $products_price Special offer: £ $lower_price (incl. VAT)";
}
else
{
echo "Price: £ $products_price (incl. VAT)";
}
}
echo " ".shoplink("index.php?action=cart&products_id=$products_id&caction=addtocart&back=main"," ");
echo " |
|
| ";
if ($k%2==1 and $k==$num) echo " | ";
if ($k%2==0) echo "";
$k++;
}
}
?>
|
|
| |
|