-
Notifications
You must be signed in to change notification settings - Fork 0
/
bob's_front_page.php
47 lines (28 loc) · 1.02 KB
/
bob's_front_page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
//load the pictures in the array
$pictures = array('tire.jpg', 'oil.jpg', 'spark_plug.jpg', 'door.jpg') ;
//shuffle the pictures
shuffle($pictures);
?>
<htm>
<head>
<title>Bob's Auto Parts - fornt page</title>
</head>
<body>
<h1>Bob's Auto Parts</h1>
<div align="center">
<table width="100%">
<tr>
<?php
for($i=0; $i< count($pictures); $i++){
echo "<td style=\"width: 33%; text-align: center\">
<img src=\"";
echo $pictures[$i];
echo "\"/></td>";
}
?>
</tr>
</table>
</div>
</body>
</htm>