-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
140 lines (134 loc) · 4.09 KB
/
about.php
File metadata and controls
140 lines (134 loc) · 4.09 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!---
Created by : Tauseef Jamadar, Abhishek Iyer, David Stolp
The about page where we have information about the team, the project in
general and contact information
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Displaying result</title>
<link rel="stylesheet" href="animated-menu.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Code for the general CSS for the website is present in this CSS File-->
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.2r1/build/grids/grids-min.css">
<!-- Code for the juqery used in this website is present in the jquery-1.3.js file-->
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.js" type="text/javascript"></script>
<!-- Code for the jquery used for the easing effect on our website-->
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<!-- Code for the jquery for animated menu on top-->
<script src="animated-menu.js" type="text/javascript"></script>
<!-- Code for the Simple modal feature on our website-->
<script type='text/javascript' src='js/jquery.simplemodal.js'></script>
<!-- Code for the java scirpt file on the contacts page-->
<script type='text/javascript' src='js/contact.js'></script>
<!-- Contact Form CSS files -->
<link type='text/css' href='css/contact.css' rel='stylesheet' media='screen' />
<!-- JS files are loaded at the bottom of the page -->
<style type="text/css">
/* All the CSS Information for the about page is placed in this section*/
/* CSS for the table data */
td{
text-align:center;
padding:10px;
}
/* CSS for the div tag with ID= cont */
#cont {
position: absolute;
width:100%;
margin:auto;
left: 11px;
top: 17px;
}
/* CSS for the left side pane */
.left{
background-color:#F2F2F2;
padding: 15px;
font-size:12px;
}
/* CSS for the middle pane */
.center{
background-color: #F2F2F2;
padding: 15px;
font-size:12px;
}
/* Css for the rigt side pane */
.right{
background-color: #F2F2F2;
padding: 15px;
font-size:12px;
}
</style>
</head>
<body>
<!-- Div tag that contains everything -->
<div id="cont">
<ul>
<!-- Structure for the feeback form -->
<li class="green">
<p><a href="index.php">Home</a></p>
<p class="subtext">The front page</p>
</li>
<li class="yellow">
<p><a href="#">About</a></p>
<p class="subtext">More info</p>
</li>
<li class="red">
<div id='container'>
<div id='content'>
<div id='contact-form'>
<p><a href="#" class='contact'>Contact</a></p>
<p class="subtext">Get in touch</p>
</div>
<div style='display:none'>
<img src='img/contact/loading.gif' alt='' />
</div>
</div>
</li>
<li class="blue">
<p><a href="#">Submit</a></p>
<p class="subtext">Send us your stuff!</p>
</li>
<li class="purple">
<p><a href="#">Terms</a></p>
<p class="subtext">Legal things</p>
</li>
<li class="new">
<form method="POST" action="search.php">
<div align="center" style="border:thick; background-color:#6AA63B; padding: 12px; position: relative">
<input type="text" id="search" size="41" align="middle" width="300" name="search"/>
<select class="category" name="category">
<option>Select Category</option>
<option>Product name</option>
<option>Manufacturer's name</option>
<option>Model</option>
<input type="submit" value="Go"/>
</select>
</div>
</form>
</li>
</ul>
</div>
<br /><br /><br /><br /><br />
</div>
<!-- Connection to the database -->
<?php
$username="tjamadar";
$password="jamadar";
$database="tjamadar";
mysql_connect("db.ecst.csuchico.edu:5551",$username,$password);
if(@mysql_select_db($database) )
echo " ";
else
echo "<h1>Connection Failure</h1>";
error_reporting (E_ERRORS);
?>
<div class="include">
<?php
include("index.php");
?>
</div>
</body>
</html>