<?php
 session_start
();
 if (
session_is_registered("valid_user"))
 {
include(
"../include/FunctionDB.php");
ConnectDB();
//  
 
$Path "../images"
    if ( isset(
$Img1) )
    if (
copy($Img1,"$Path/$Img1_name")) 
       {
            
unlink ($Img1);
            
$Img1 "$Path/$Img1_name";
       }
$DateBirth $_POST['mYear1']."-".$_POST['mMonth1']."-".$_POST['mDate1'];
$Datetype $_POST['mYear']."-".$_POST['mMonth']."-".$_POST['mDate'];
$sql " UPDATE personal_den_tb SET   HN_code='$HN_code',Teacher_code='$Teacher_code',First_name='$First_name',Name='$Name',Lastname='$Lastname',DateBirth='$DateBirth',Datetype='$Datetype',Sex='$Sex',Hostpital='$Hostpital',Nationality='$Nationality',Nation='$Nation',Religion='$Religion',Citizen_id='$Citizen_id',Father_name='$Father_name',Mother_name='$Mother_name',Age='$Age',ProvinceId='$ProvinceId',Zipcode='$Zipcode',Mobile='$Mobile',Phone='$Phone',Work='$Work',Education='$Education',Email_name='$Email_name',Email_1='$Email_1',Status2='$Status2',Status3=' $Status3',Phone_1='$Phone_1',Mobile_1='$Mobile_1',Address='$Address',Img1='$Img1',Degree_code='$Degree_code',Person_type='  $Person_type',Club_nid='$Club_nid',Group_1='$Group_1',Group_2='$Group_2',Group_3='$Group_3',Group_4='$Group_4',Dental_code='$Dental_code',Username='$Username',password='$Password',Permision='$Permision'  WHERE  Person_code ='$Person_code' ";
$result mysql_query($sql) or die("Update Error $sql".mysql_error());
header("Location:EditpersonList.php");            
CloseDB();
?>
<?php 
    
}
else
{
       echo
"<meta http-equiv=\"refresh\" content=\"3;URL=../login.php\">\n";
       echo
"Please Login ";
}
?>