Aggiunta link a ID ordini del cliente
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user