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