Aggiunta link a ID ordini del cliente

This commit is contained in:
2026-02-25 11:05:13 +01:00
parent 1db8d4cdbf
commit 8e4095f450

View File

@@ -42,12 +42,12 @@ $result = mysqli_query($conn, $sql);
echo "</tr>"; echo "</tr>";
while ($row = mysqli_fetch_assoc($result)) { while ($row = mysqli_fetch_assoc($result)) {
echo "<tr>"; echo "<tr>";
echo "<td>" . $row['OrderID']."</td>" ; echo "<td><a href='index.php?orderId=" . $row['OrderID'] ."'>" . $row['OrderID'] ."</a></td>" ;
echo "</tr>"; echo "</tr>";
} }
echo "</table>"; echo "</table>";
} }
else if(isset($_GET["orderid"])){ else if(isset($_GET["orderId"])){
echo "WIP"; echo "WIP";
} }
else { else {