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