-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.php
More file actions
41 lines (36 loc) · 1.11 KB
/
info.php
File metadata and controls
41 lines (36 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>index</title>
<meta name="generator" content="TextMate http://macromates.com/">
<meta name="author" content="Dhruva Krishnan">
<link rel="stylesheet" href="http://yui.yahooapis.com/3.3.0/build/cssgrids/grids.css" type="text/css">
<link rel="stylesheet" href="styles.css" type="text/css">
<script src="http://yui.yahooapis.com/3.3.0/build/yui/yui-min.js"></script>
</head>
<body>
<div id="maincontainer">
<div id="topsection"><div style="font-family: 'Artifika', serif; font: 2em; #d84040;
"><h1>Pothole and Corporator Info</h1></div></div>
<div id="contentwrapper">
<div id="contentcolumn">
<?php
echo '<img src='.$_GET["photo"].' />';
?>
</div>
</div>
<div id="leftcolumn">
<div class="holeDesc">
<?php
echo "<img src=".$_GET['corpphoto']." height=100 width=100/><br/>";
echo "".$_GET['name']."<br/>";
echo "Ward Number: ".$_GET['ward_num']."<br/>";
echo "Ward Name: ".$_GET['ward_name']."<br/>";
echo "Phone Number: ".$_GET['phone_num']."<br/>";
?>
</div>
</div>
</div>
</body>
</html>