1<!DOCTYPE html>
2<html>
3<head>
4 <title>Image Upload Results</title>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7</head>
8<body>
9 <div>
10 <h3>Congratulations, the image has successfully been uploaded</h3>
11 <p>Click here to view the image you just uploaded
12 <?=anchor('images/'.$image_metadata['file_name'], 'View My Image!')?>
13 </p>
14
15 <p>
16 <?php echo anchor('upload-image', 'Go back to Image Upload'); ?>
17 </p>
18 </div>
19</body>
20</html>
21