-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompany_head.php
132 lines (85 loc) · 3.09 KB
/
company_head.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
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
<?php session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php if (!isset($_SESSION['username']) || !isset($_SESSION['name']) || !isset($_SESSION['login']) || $_SESSION['login']!=1)
{
echo "User Authentication Required";
echo '<meta http-equiv="Refresh" content="2;
URL=index.php">';
die();} ?>
<head>
<title>Profile</title>
<meta http-equiv="Content-Language" content="English" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Training & Placement, NSIT" />
<link rel="stylesheet" type="text/css" href="css/template.css" />
<script type="text/javascript">
function logout() {
var confirmmessage = "Are you sure you want to logout?";
var goifokay = "companylogout.php";
var cancelmessage = "Action Cancelled";
if (confirm(confirmmessage)) {
window.location = goifokay;
} else {
alert(cancelmessage);
}
}
</script>
</head>
<body>
<div id="page-container">
<div id="branding">
<img src="banner/tnp2.jpg" width="100%" height="150"/>
</div><!-- end branding -->
<div id="page-content" class="clearfix">
<?php
echo "<h2 style='float:left'>Hello ".$_SESSION['name']."</h2><h2> Welcome to the Homepage of the Training and Placement Cell, Netaji Subhas Institute of Technology.</h2>";
?>
<div class="inner-box clearfix">
<div id="sidebar">
<ul id='sidebar' class="main">
<li class="current"><a href="#">Profile</a></li>
<li><a href="companypassword.php">Change Password</a></li>
<li><a href="#" onClick="logout()">Logout</a></li>
</ul>
</div>
<div id="form-block">
<form id="values" action="company_headverify.php" method="post" enctype="multipart/form-data">
<?php
$con = mysql_connect("localhost","nsitonli_potter","Rj9868045066");
if(!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("nsitonli_trndpl",$con);
$cname = $_SESSION['name'];
$sqlselect="SELECT * from companyprofile WHERE username = '$name' ";
if(!mysql_query($sqlselect,$con))
{
die('Error: ' . mysql_error());
}
$result = mysql_query($sqlselect);
$row = mysql_fetch_array($result);
?>
<h2>HEAD OF DEPARTMENT CONTACT INFORMATION</h2><br/>
<p>Name: </p><input name="head_name" type="text" value="<?php echo $row['head_name'] ?>" size="70" />
<p>Contact No : </p>Mobile<input name="head_mobile" type="text" value="<?php echo $row['head_mobile'] ?>" size="70"/> Landline<input name="head_landline" type="text" value="<?php echo $row['head_landline'] ?>" size="70"/>
<p>Email ID: </p><input name="head_email" type="text" value="<?php echo $row['head_email'] ?>" size="70" />
<?php
mysql_close($con);
?>
<table cellspacing="30">
<tr><td>
<a href="company_contact.php"><img src="back.jpg" /></a></td><td>
<input type="image" src="next.jpg" /></td></tr></table>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- end page-content -->
</div><!-- end page-container -->
</body>
</html>