| Truck Accessories :
Exterior Accessories : Grill Inserts
Grilz grill inserts are the latest in truck accessories.
Made of 304 series
Stainless Steel, with a bright mirror finish, these inserts give your
truck a polished new look.
Take a look at the before and after images below:
| Before: |
After: |
 |
 |
|
Click images to enlarge |
|
Computer designed and manufactured for a perfect fit every time. Each
insert is trimmed with heavy duty rubber to protect the original grill.
View other models and images here.
Models available and prices:
| Make |
Year |
Model |
Type |
Price |
|
/*
This code produces the urls from a csv
Make sure the csv has the following format:
row0=product i.e.: Access RollUp Cover-Toolbox edition
row1=make-every line (Ford)
row2=part#
row3=model-Short Box Chevy
row4=bedsize/some other feature i.e.: 8'
row5=year
row6=price
row7=some extra notes/copy
Change the first three variables to reflect the path to the csv:
*/
$domain="http://www.truckaccessoriesworld.com/";
$directory= "grill-inserts/";
$csv= "grilz";
/* Leave the following alone*/
$url = "$csv.csv";
$fp = fopen("$url","r");
while ($row = fgetcsv($fp,10000))
echo "
| $row[1] |
$row[5] |
$row[3] |
$row[4] |
$row[6] |
|
";
?>
/*
This code produces the urls from a csv
Make sure the csv has the following format:
row0=product i.e.: Access RollUp Cover-Toolbox edition
row1=make-every line (Ford)
row2=part#
row3=model-Short Box Chevy
row4=bedsize/some other feature i.e.: 8'
row5=year
row6=price
row7=some extra notes/copy
Change the first three variables to reflect the path to the csv:
*/
$domain="http://www.truckaccessoriesworld.com/";
$directory= "grill-inserts/";
$csv= "grilz";
/* Leave the following alone*/
$url = "$csv.csv";
$fp = fopen("$url","r");
while ($row = fgetcsv($fp,10000))
if ($make!=$row[1])
{
$make=$row[1];
echo "$row[1]";
echo "$row[5] $row[1] $row[3] for $row[4] ($row[0])\n";
}
else
{
echo "$row[5] $row[1] $row[3] for $row[4] ($row[0])\n";
$make=$row[1];
}
?>
|