工作门户项目
它是用PHP编写的,并且正在使用MySQL数据库。该项目分为两个模块:用户端、管理面板。讲解了用户端功能: 用户可以注册自己、登录模块、用户可以更新自己的个人资料、更改密码、查看购物车、订单历史。管理员功能:管理员可以从管理面板控制整个数据、更改服务价格、管理所有注册用户、更改网站内容
同时也介绍了该项目中使用的技术1.XAMPP 2.WAMP 3.LAMP 4.MAMP等等。
应用介绍
它是用PHP编写的,并且正在使用MySQL数据库。该项目分为两个模块:用户端、管理面板。同时也介绍了该项目中使用的技术1.XAMPP 2.WAMP 3.LAMP 4.MAMP等等。本人只展示了一小部分php代码,如想详细的了解请点击下方链接下载附件。
<?php session_start(); ?>
<?php
if(isset($_SESSION['name']))
{
include('dbconnection.php');
if(isset($_POST['sbt']))
{
$qry=mysql_query(" select password from login where password='".$_POST['oldpwd']."'");
$way=mysql_fetch_array($qry);
if($way>0)
if ($_POST["npwd"]==$_POST["cpwd"])
{
$car=mysql_query("update login set password='".$_POST['npwd']."'". " where id='1'");
echo ("password successfully updated");
}
else
{
echo ("sorry Old password does not match!");
}
}
?>
<!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>PHPGURUKUL Job Portal</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript">
function validate()
{
// name
var v1=document.getElementById("oldpwd").value;
if(v1==null || v1=="")
{
alert("Please Enter Old Password");
return false;
}
// name
var v2=document.getElementById("npwd").value;
if(v2==null || v2=="")
{
alert("Please Enter New Password");
return false;
}
// name
var v3=document.getElementById("cpwd").value;
if(v3==null || v3=="")
{
alert("Please Enter Confirm Password");
return false;
}
// name
/*if(v2!=v3)
{
alert("New Password & Confirm Password does not match!");
return false;
}*/
}
</script>
</head>
<body style="background-color:#EFEFEF;">
<?php include('header.php');?>
<!--middle-->
<div style="width:1050px; height:auto; margin:auto;border:#000099 1px solid;">
<!--left-->
<div ><?php include('left.php'); ?></div>
<!--right-->
<div style="width:810px; height:525px; float:left; margin:auto; background-color:#5C5857;">
<form action="changepassword.php" method="post" name="form" >
<table style="margin-left:200px;margin-top:100px;" class="text1">
<tr>
<td width="174">Old Password</td>
<td width="243"><input type="text" name="oldpwd" id="oldpwd" /></td>
</tr>
<tr>
<td>New Password</td>
<td><input type="text" name="npwd" id="npwd"/></td>
</tr>
<tr>
<td>Confirm Password</td>
<td><input type="text" name="cpwd" id="cpwd" /></td>
</tr>
<tr>
<td height="35"> </td>
<td><input type="submit" name="sbt" id="sbt" onclick="return validate();"/></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
</body>
</html>
<?php
}
else
{
header('Location:logout.php');
}
?>
©版权声明:本文内容由互联网用户自发贡献,版权归原创作者所有,本站不拥有所有权,也不承担相关法律责任。如果您发现本站中有涉嫌抄袭的内容,欢迎发送邮件至: www_apollocode_net@163.com 进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。
转载请注明出处: apollocode » 工作门户项目
文件列表(部分)
名称 | 大小 | 修改日期 |
---|---|---|
jobportal | 0.00 KB | 2015-11-04 |
0.jpg | 9.62 KB | 2015-11-28 |
2.jpg | 9.57 KB | 2015-11-28 |
3.jpg | 9.49 KB | 2015-11-28 |
4.jpg | 9.41 KB | 2015-11-28 |
5.jpg | 9.45 KB | 2015-11-28 |
6.jpg | 9.04 KB | 2015-11-28 |
7.jpg | 9.26 KB | 2015-11-28 |
8.jpg | 9.28 KB | 2015-11-28 |
9.jpg | 8.90 KB | 2015-11-28 |
a1.php | 2.36 KB | 2015-11-44 |
a2.php | 4.08 KB | 2015-11-56 |
a3.php | 0.60 KB | 2015-11-30 |
AboutUs.php | 2.50 KB | 2015-11-14 |
admin | 0.00 KB | 2015-11-18 |
addgallery.php | 1.96 KB | 2015-11-56 |
career.php | 6.97 KB | 2015-11-56 |
changepassword.php | 2.72 KB | 2015-11-14 |
css_middle | 0.00 KB | 2015-11-06 |
style.css | 2.53 KB | 2015-11-02 |
data2.php | 4.51 KB | 2015-11-56 |
dbconnection.php | 0.31 KB | 2015-11-02 |
error_log | 7.44 KB | 2015-11-56 |
gallery.php | 2.63 KB | 2015-11-14 |
groth_pack.php | 4.34 KB | 2015-11-14 |
header.php | 0.25 KB | 2015-11-44 |
htdocs - Shortcut.lnk | 0.74 KB | 2015-11-58 |
images | 0.00 KB | 2015-11-44 |
delete.png | 4.07 KB | 2015-11-02 |
view.png | 3.91 KB | 2015-11-02 |
index.php | 1.80 KB | 2015-11-14 |
js | 0.00 KB | 2015-11-06 |
发表评论 取消回复