Manufacturers Stocked starting 7, 8 & 9
Click the manufacturer name to see a list of products.
| 7 |
$sql = 'SELECT DISTINCT UPPER(man) AS man FROM parts WHERE man LIKE "7%" AND se = "1" AND private != 1 ORDER BY UPPER(man)';
foreach ($conn->query($sql) as $row) {
?>
|
print "" .htmlspecialchars($row['man']) ."";
//print $row['man'];
?>
|
};?>
| 8 |
$sql = 'SELECT DISTINCT UPPER(man) AS man FROM parts WHERE man LIKE "8%" AND se = "1" AND private != 1 ORDER BY UPPER(man)';
foreach ($conn->query($sql) as $row) {
?>
|
print "" .htmlspecialchars($row['man']) ."";
//print $row['man'];
?>
|
};?>
| 9 |
$sql = 'SELECT DISTINCT UPPER(man) AS man FROM parts WHERE man LIKE "9%" AND se = "1" AND private != 1 ORDER BY UPPER(man)';
foreach ($conn->query($sql) as $row) {
?>
|
print "" .htmlspecialchars($row['man']) ."";
//print $row['man'];
?>
|
};?>