From acddfabfaba99b534f51944e53cf1c04a23b5125 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 27 Oct 2016 14:43:48 -0400 Subject: [PATCH] Final markup validation fixes All projects should now meet requirements and have valid markup. --- chapter10/chapter10-project03.php | 2 +- chapter10/orderFunctions.inc.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chapter10/chapter10-project03.php b/chapter10/chapter10-project03.php index 7bb2d01..65a23de 100644 --- a/chapter10/chapter10-project03.php +++ b/chapter10/chapter10-project03.php @@ -116,7 +116,7 @@ </div> <!-- end main content column --> </div> <!-- end main content row --> -</div> <!-- end container --> + <!-- end container --> diff --git a/chapter10/orderFunctions.inc.php b/chapter10/orderFunctions.inc.php index e180a27..15e24b3 100644 --- a/chapter10/orderFunctions.inc.php +++ b/chapter10/orderFunctions.inc.php @@ -38,8 +38,8 @@ $ordersArrayLength = count($orders); for ($index = 0; $index < ($ordersArrayLength); $index++) { echo "<tr>"; - echo "<td><img src='images/book/tinysquare/" . $orders[$index][2] . ".jpg'></td>"; - echo "<td><a href='chapter10-project03.php?isbn=" . $orders[$index][2] . "'>" . $orders[$index][2] . "</td>"; + echo "<td><img src='images/book/tinysquare/" . $orders[$index][2] . ".jpg' alt=''></td>"; + echo "<td><a href='chapter10-project03.php?isbn=" . $orders[$index][2] . "'>" . $orders[$index][2] . "</a></td>"; echo "<td>" . $orders[$index][3] . "</td>"; echo "<td>" . $orders[$index][4] . "</td>"; echo "</tr>"; -- GitLab