<?php
include_once("include/db_connection.php");
session_start();
if($_SESSION["adminloggedIn"] == FALSE){
header("Location:admin_login.php");
exit;
}
include_once("config_admin.php");
include('header.php');
include('left1.php');?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Premium Series by Free CSS Templates</title>
<meta name="keywords" content="" />
<meta name="Premium Series" content="" />
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript" src="gen_validatorv31.js" type="text/javascript"></script>
<title>Untitled Document</title>
</head>
<body>
<div id="wrapper">
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="prtCnt" align="center">
<div id="content" align="center">
<div class="post">
<h2 class="title"> </h2>
<div class="entry">
<?php
$UserName = $_SESSION['UserName'];
$sqlDetails = "SELECT * FROM users WHERE UserName = '$UserName'";
$resultDetails = MYSQL_QUERY($sqlDetails);
$FirstName = MYSQL_RESULT($resultDetails,"0","FirstName");
$LastName = MYSQL_RESULT($resultDetails,"0","LastName");
$Password = MYSQL_RESULT($resultDetails,"0","Password");
$Type =MYSQL_RESULT($resultDetails,"0","Type");
$Age = MYSQL_RESULT($resultDetails,"0","Age");
$Sex = MYSQL_RESULT($resultDetails,"0","Sex");
$PhoneNo = MYSQL_RESULT($resultDetails,"0","PhoneNo");
$EmailId = MYSQL_RESULT($resultDetails,"0","EmailId");
$Description = MYSQL_RESULT($resultDetails,"0","Description");
?>
<div align="center">Edit UserProfile</div>
<form action="editingUserDetails.php" method="POST" name="edit_user" onSubmit="return validate_form(this)">
<table width="517" height="344" border="0">
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>First Name </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="FirstName" type="text" value="<?php echo $FirstName; ?>" size="35" maxlength="30" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>Last Name </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="LastName" type="text" value="<?php echo $LastName; ?>" size="35" maxlength="30" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>Age </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="Age" type="text" value="<?php echo $Age; ?>" size="35" maxlength="45" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>Sex </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="Sex" type="text" value="<?php echo $Sex; ?>" size="35" maxlength="25" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>Phone No </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="PhoneNo" type="text" value="<?php echo $PhoneNo; ?>" size="35" maxlength="45" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>EmailId </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="EmailId" type="text" value="<?php echo $EmailId; ?>" size="35" maxlength="150" onChange="checkEmail(this.value)" /></strong></td>
</tr>
<tr>
<td width="32%" height="35" align="center" bgcolor="#E6E6E6"><strong>Description </strong></td>
<td width="68%" align="center" bgcolor="#FFFFFF"><strong><input name="Description" type="text" value="<?php echo $Age; ?>" size="35" maxlength="250" /></strong></td>
</tr>
<tr>
<td height="40" align="center" ><input type="submit" name="Submit" value="Submit" /></td>
</tr>
</table>
</form>
<script language="JavaScript" type="text/javascript">
var frmvalidator = new Validator("edit_user");
frmvalidator.addValidation("FirstName","req","Please enter your First Name");
frmvalidator.addValidation("FirstName","maxlen=35","Max length for First Name is 45");
frmvalidator.addValidation("FirstName","alpha_s");
frmvalidator.addValidation("EmailId","req","Please enter your EmailId");
frmvalidator.addValidation("EmailId","minlen=6","Please Enter Valid emailid");
frmvalidator.addValidation("LastName","req","Please enter your Last Name");
frmvalidator.addValidation("LastName","maxlen=35","Max length for Last Name is 45");
frmvalidator.addValidation("LastName","alpha_s");
frmvalidator.addValidation("Age","req","Please enter your Age");
frmvalidator.addValidation("Age","maxlen=3","Please enter the age in 3 digit");
frmvalidator.addValidation("Age","numeric");
frmvalidator.addValidation("Sex","req","Please enter Sex 1 for Male and 0 for Female");
frmvalidator.addValidation("Sex","maxlen=1","Please enter 1 for Male and 0 for Female in Sex Field");
frmvalidator.addValidation("PhoneNo","req","Please enter PhoneNo");
frmvalidator.addValidation("PhoneNo","maxlen=10","Phone number must be min 6 digits and max 10 digits");
frmvalidator.addValidation("PhoneNo","minlen=6","Phone number must be min 6 digits and max 10 digits");
frmvalidator.addValidation("PhoneNo","numeric");
frmvalidator.addValidation("Description","req","Please enter your Description");
frmvalidator.addValidation("Description","maxlen=200");
</script>
<script TYPE="text/javascript">
<!--
function checkEmail(EmailId)
{
if(EmailId.length > 0)
{
if (EmailId.indexOf(' ') >= 0)
alert("email addresses cannot have spaces in them");
else if (EmailId.indexOf('@') == -1)
alert("a valid email address must be in hide@address.com");
}
}
//-->
</script>
</p>
</div>
</div>
</div>
</div>
<!-- end content -->
<!-- start sidebars -->
<!-- end sidebars -->
<div style="clear: both;"> </div>
</div>
<!-- end page -->
</div>
</html>
<?php
include('footer.php');
?>