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