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