-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
57 lines (51 loc) · 1.89 KB
/
about.php
File metadata and controls
57 lines (51 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require_once('../Connections/RUCrazy.php');
mysql_select_db($database_RUCrazy, $RUCrazy);
$uid = $_REQUEST['uid'];
$result = mysql_query(
"SELECT uid, fname, lname, phone, campus
FROM user WHERE uid='".$uid."'
");
if (!$result) {
die('Invalid query: ' . mysql_error());
}
$result = mysql_fetch_assoc($result);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RU Crazy?</title>
<!-- Stylesheets
============================================= -->
<link type="text/css" rel="stylesheet" href="includes/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="includes/css/override.css" />
<!-- Javascripts
============================================= -->
<script type="text/javascript" src="includes/js/jquery.min.js"></script>
<script type="text/javascript" src="includes/js/bootstrap-2.0.2.js"></script>
<script type="text/javascript" src="includes/js/jquery.blueberry.js"></script>
<!-- Functions
============================================= -->
</head>
<body>
<br/>
<div id="wrapper">
<?php include"includes/status.php" ?>
<div id="header">RU Crazy</div>
<br/>
<?php include"includes/top_nav.php" ?>
<div id="doc">
<div id="content" align="center">
<p>Name: <?= $result['fname']?> <?= $result['lname']?></p>
<p>Email: <?= $result['uid'] ?></p>
<p>Phone: <?= $result['phone'] ?></p>
<p>Campus: <?= $result['campus'] ?></p>
<p><a href="account_edit.php">Edit Account Information</a></p>
<p><a href="products/transactions.php">View Transactions</a></p>
</div>
</div>
<?php include"includes/footer.php" ?>
</div>
</body>
</html>