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