Aggiunto stylesheet

This commit is contained in:
2026-02-25 11:09:14 +01:00
parent 8e4095f450
commit 07c27f6b41
2 changed files with 179 additions and 1 deletions

View File

@@ -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>";
}