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