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