Skip to content
Snippets Groups Projects
Commit acddfabf authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Final markup validation fixes

All projects should now meet requirements and have valid markup.
parent eb134319
Branches
No related merge requests found
......@@ -116,7 +116,7 @@
</div> <!-- end main content column -->
</div> <!-- end main content row -->
</div> <!-- end container -->
<!-- end container -->
......
......@@ -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>";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment