Skip to content
Snippets Groups Projects
Commit bce38dd0 authored by totoW's avatar totoW
Browse files

L

parent d5bf5168
Branches main
No related tags found
No related merge requests found
...@@ -30,7 +30,8 @@ if ($result->num_rows > 0) { ...@@ -30,7 +30,8 @@ if ($result->num_rows > 0) {
echo '<h2>Order Number: ' . $row['orderNumber'] . '</h2>'; echo '<h2>Order Number: ' . $row['orderNumber'] . '</h2>';
// Decode the JSON-encoded items // Decode the JSON-encoded items
$items = json_decode($row['items'], true); $items = json_decode($row['items'], JSON_UNESCAPED_UNICODE);
echo '<ul>'; echo '<ul>';
// Display each item in the order // Display each item in the order
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment