Aggiunto stylesheet
This commit is contained in:
@@ -24,6 +24,12 @@ $result = mysqli_query($conn, $sql);
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Northwind Clients</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<style>
|
||||
a{
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
@@ -56,7 +62,7 @@ $result = mysqli_query($conn, $sql);
|
||||
while ($row = mysqli_fetch_assoc($result)) {
|
||||
echo "<option value='" . $row['CustomerID'] . "'>" . $row['CustomerID'] . " - " . $row['CustomerName'] . "</option>";
|
||||
}
|
||||
echo "</select><br>";
|
||||
echo "</select>";
|
||||
echo "<input type='submit' value='Visualizza Ordini'>";
|
||||
echo "</form>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user