hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
arrowaim.in
/
Upload FileeE
HOME
<?php ob_start(); include("configuration/function-include.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <title>Arrow Aim Academy</title> <!-- META TAGS --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Arrow Aim Academy is one of the best educational Academy, it's suitable for all education online education,tution center,distance education,computer education"> <meta name="keyword" content="education, Best Academy,"> <!-- FAV ICON(BROWSER TAB ICON) --> <link rel="shortcut icon" href="images/icon.png" type="image/x-icon"> <!-- GOOGLE FONT --> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700%7CJosefin+Sans:600,700" rel="stylesheet"> <!-- FONTAWESOME ICONS --> <link rel="stylesheet" href="css/font-awesome.min.css"> <!-- ALL CSS FILES --> <link href="css/materialize.css" rel="stylesheet"> <link href="css/bootstrap.css" rel="stylesheet" /> <link href="css/style.css" rel="stylesheet" /> <link href="css/style-mob.css" rel="stylesheet" /> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="/resources/demos/style.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( "#date" ).datepicker({ maxDate: new Date() }); } ); </script> </head> <body> <?php include 'header.php' ?> <!--END HEADER SECTION--> <!--SECTION START--> <section> <div class="pro-cover"> </div> <div class="pro-menu"> <div class="container"> <div class="col-md-10 col-md-offset-3"> <ul> <li><a href="db-profile.php">Profile</a></li> <li><a href="#">Attendance</a></li> <li><a href="circularupdates.php">Circular Updates</a></li> <li><a href="db-homework.php">Homework</a></li> <li><a href="fees.php">Fee</a></li> <li><a href="payments.php">History</a></li> <li><a href="result.php">Result</a></li> <li><a href="questionbank.php">Question Bank</a></li> <li><a href="test.php">Test-Series</a></li> <li><a href="#">Notes</a></li> </ul> </div> </div> </div> <?php if(!empty($_REQUEST['datafrmSubmit'])){ $_REQUEST['datafrmSubmit'] = $_REQUEST['datafrmSubmit']; } else { $_REQUEST['datafrmSubmit'] = ''; } if(empty($_SESSION["ID"])){ header("location:index.php"); } //Fetch Data From Database............... $sql_select = "Select * from profile where userID = '".$_SESSION["ID"]."'"; $query_select = mysqli_query($conn, $sql_select); $res_select = mysqli_fetch_array($query_select); ?> <div class="stu-db"> <div class="container pg-inn"> <div class="col-md-3"> <div class="pro-user"> <?php if(!empty($res_select['photo'])){ ?> <img src="upload/photo/<?php echo $res_select['photo'];?>" class="img-responsive" style="height: 200px;width:100%; "> <?php } else { ?> <img src="images/download.jpg" class="img-responsive" style="height: 200px;width:100%; "> <?php } ?> </div> <div class="pro-user-bio"> <ul> <li> <h4><?php echo $res_select['name']; ?></h4> </li> <li>Student Id: <?php echo $res_select['userID']; ?></li> <li><a href="logout.php" class="btn btn-primary" style="color:white;">Log out</a> </li> </ul> </div> </div> <?php if($_REQUEST['datafrmSubmit'] == 'Submit'){ if(!empty($_REQUEST['DID'])){ if($_FILES["photo"]["name"]){ $photo=$_FILES["photo"]["name"]; $photo_arr = explode('.',$photo); $len1=count($photo_arr); $len1-=1; $f_name = time().".".$photo_arr[$len1]; move_uploaded_file($_FILES["photo"]["tmp_name"],"upload/photo/".$f_name); $sql_update="update profile set photo = '".$f_name."' where id='".$_GET['DID']."'"; $result=mysqli_query($conn, $sql_update); } if($_FILES["age"]["name"]){ $photo=$_FILES["age"]["name"]; $photo_arr = explode('.',$photo); $len1=count($photo_arr); $len1-=1; $a_name = time().".".$photo_arr[$len1]; move_uploaded_file($_FILES["age"]["tmp_name"],"upload/age/".$a_name); $sql_update="update profile set age = '".$a_name."' where id='".$_GET['DID']."'"; $result=mysqli_query($conn, $sql_update); } if($_FILES["signature"]["name"]){ $photo=$_FILES["signature"]["name"]; $photo_arr = explode('.',$photo); $len1=count($photo_arr); $len1-=1; $s_name = time().".".$photo_arr[$len1]; move_uploaded_file($_FILES["signature"]["tmp_name"],"upload/signature/".$s_name); $sql_update="update profile set signature = '".$s_name."' where id='".$_GET['DID']."'"; $result=mysqli_query($conn, $sql_update); } if($_FILES["domicle"]["name"]){ $photo=$_FILES["domicle"]["name"]; $photo_arr = explode('.',$photo); $len1=count($photo_arr); $len1-=1; $d_name = time().".".$photo_arr[$len1]; move_uploaded_file($_FILES["domicle"]["tmp_name"],"upload/domicile/".$d_name); $sql_update="update profile set domicle = '".$d_name."' where id='".$_GET['DID']."'"; $result=mysqli_query($conn, $sql_update); } if($_FILES["cast"]["name"]){ $photo=$_FILES["cast"]["name"]; $photo_arr = explode('.',$photo); $len1=count($photo_arr); $len1-=1; $c_name = time().".".$photo_arr[$len1]; move_uploaded_file($_FILES["cast"]["tmp_name"],"upload/cast/".$c_name); $sql_update="update profile set cast = '".$c_name."' where id='".$_GET['DID']."'"; $result=mysqli_query($conn, $sql_update); } echo $sql_update = "update profile set medium = '".$_REQUEST['medium']."', name = '".$_REQUEST['name']."',category = '".$_REQUEST['category']."',rank = '".$_REQUEST['rank']."',domicile = '".$_REQUEST['domicile']."',dob = '".$_REQUEST['dob']."',caste = '".$_REQUEST['caste']."',email = '".$_REQUEST['email']."',gender = '".$_REQUEST['gender']."',aadharno = '".$_REQUEST['aadharno']."',address = '".$_REQUEST['address']."',country = '".$_REQUEST['country']."',state = '".$_REQUEST['state']."',district = '".$_REQUEST['district']."',pincode = '".$_REQUEST['pincode']."',paddress = '".$_REQUEST['paddress']."',pcountry = '".$_REQUEST['pcountry']."',pstate = '".$_REQUEST['pstate']."',ppincode = '".$_REQUEST['ppincode']."',examcity1 = '".$_REQUEST['examcity1']."',examcity2 = '".$_REQUEST['examcity2']."',examcity3 = '".$_REQUEST['examcity3']."',examcity4 = '".$_REQUEST['examcity4']."', militaryprefrence1 = '".$_REQUEST['militaryprefrence1']."',militaryprefrence2 = '".$_REQUEST['militaryprefrence2']."',militaryprefrence3 = '".$_REQUEST['militaryprefrence3']."',militaryprefrence4 = '".$_REQUEST['militaryprefrence4']."',cityprefrence1 = '".$_REQUEST['cityprefrence1']."',cityprefrence2 = '".$_REQUEST['cityprefrence2']."',cityprefrence3 = '".$_REQUEST['cityprefrence3']."',fname = '".$_REQUEST['fname']."',nameofdepended = '".$_REQUEST['nameofdepended']."',armyno = '".$_REQUEST['armyno']."',unitno = '".$_REQUEST['unitno']."',apo = '".$_REQUEST['apo']."',fphone = '".$_REQUEST['fphone']."',faadhar = '".$_REQUEST['faadhar']."',mname = '".$_REQUEST['mname']."',mphone = '".$_REQUEST['mphone']."',maadhar = '".$_REQUEST['maadhar']."', insert_date_time = '".date("Y-m-d h:i:sa")."' where userID = '".$_SESSION["ID"]."'"; $query_update = mysqli_query($conn, $sql_update); $_SESSION['msg'] = "Record updated successfully."; header("location:db-profile.php"); } } if(!empty($_GET['delimg'])){ $sql_img = "select * from profile where id = '".$_GET['delimg']."'"; $result = mysqli_query($conn, $sql_img); $row_img = mysqli_fetch_array($result); $sql = "update profile set photo = '' where id='".$_GET['delimg']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/photo/".$row_img['photo']); header("location: $_SERVER[HTTP_REFERER]"); exit(); } if(!empty($_GET['delimg'])){ $sql_img = "select * from profile where id = '".$_GET['delimg']."'"; $result = mysqli_query($conn, $sql_img); $row_img = mysqli_fetch_array($result); $sql = "update profile set photo = '' where id='".$_GET['delimg']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/photo/".$row_img['photo']); header("location: $_SERVER[HTTP_REFERER]"); exit(); } if(!empty($_GET['delimg1'])){ $sql_pdf = "select * from profile where id = '".$_GET['delimg1']."'"; $result = mysqli_query($conn, $sql_pdf); $row_pdf = mysqli_fetch_array($result); $sql = "update profile set age = '' where id='".$_GET['delimg1']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/age/".$row_pdf['age']); header("location: $_SERVER[HTTP_REFERER]"); exit(); }if(!empty($_GET['delimg9'])){ $sql_domicile = "select * from profile where id = '".$_GET['delimg9']."'"; $result = mysqli_query($conn, $sql_domicile); $row_domicile = mysqli_fetch_array($result); $sql = "update profile set domicle = '' where id='".$_GET['delimg9']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/domicile/".$row_domicile['domicle']); header("location: $_SERVER[HTTP_REFERER]"); exit(); } if(!empty($_GET['delimg2'])){ $sql_sign = "select * from profile where id = '".$_GET['delimg2']."'"; $result = mysqli_query($conn, $sql_sign); $row_sign = mysqli_fetch_array($result); $sql = "update profile set signature = '' where id='".$_GET['delimg2']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/signature/".$row_sign['signature']); header("location: $_SERVER[HTTP_REFERER]"); exit(); } if(!empty($_GET['delimg3'])){ $sql_cast = "select * from profile where id = '".$_GET['delimg3']."'"; $result = mysqli_query($conn, $sql_cast); $row_cast = mysqli_fetch_array($result); $sql = "update profile set cast = '' where id='".$_GET['delimg3']."'"; $result = mysqli_query($conn, $sql); @unlink("upload/cast/".$row_sign['cast']); header("location: $_SERVER[HTTP_REFERER]"); exit(); } ?> <div class="col-md-9"> <h4><img src="images/icon/db1.png" alt="" /> My Profile</h4> <div class="udb" style="margin-top:20px;"> <form method="post" action="" name="datafrm" id="datafrm" enctype="multipart/form-data" > <div class="box-body"> <div class="row"> <input type="hidden" name="id" value="<?php echo $id; ?>"> <div class="col-md-3"> <label> Student Name</label> <input type="text" class="form-control input-lg" name="name" value="<?php echo $res_select['name'];?>"> </div> <div class="col-md-3"> <label>Email</label> <input class="form-control input-lg" name="email" id="email" required="" type="email" value="<?php echo $res_select['email'];?>" readonly> </div> <div class="col-md-3"> <label>Aadhar Number</label> <input class="form-control input-lg" name="aadharno" id="aadharno" maxLength="19" data-type="adhaar-number" required="" type="text" value="<?php echo $res_select['aadharno'];?>"> </div> <div class="col-md-3"> <label>Date of Birth </label> <input class="form-control input-lg" name="dob" id="date" required="" type="text" value="<?php echo $res_select['dob'];?>"> </div> <div class="col-md-3"> <label>Address </label> <input class="form-control input-lg" name="address" id="address" required="" type="text" value="<?php echo $res_select['address'];?>"> </div> <div class="col-md-3"> <label>Gender </label> <input class="form-control input-lg" name="gender" id="gender" required="" type="text" value="<?php echo $res_select['gender'];?>"> </div> <div class="col-md-3"> <label>Category </label> <input class="form-control input-lg" name="category" id="category" required="" type="text" value="<?php echo $res_select['category'];?>"> </div> <div class="col-md-3"> <label>class </label> <?php $sql_class = "Select * from class where id ='".$res_select['classID']."'"; $query_class = mysqli_query($conn, $sql_class); $res_class = mysqli_fetch_array($query_class) ?> <input class="form-control input-lg" name="classID" id="classID" required="" type="text" value="<?php echo $res_class['class'];?>" readonly> </div> <div class="col-md-3"> <label>Medium </label> <input class="form-control input-lg" name="medium" id="medium" required="" type="text" value="<?php echo $res_select['medium'];?>"> </div> <div class="col-md-3"> <label>Defence Rank </label> <input class="form-control input-lg" name="rank" id="rank" required="" type="text" value="<?php echo $res_select['rank'];?>"> </div> <div class="col-md-3"> <label>State Of Domicile </label> <input class="form-control input-lg" name="domicile" id="domicile" required="" type="text" value="<?php echo $res_select['domicile'];?>"> </div> <div class="col-md-3"> <label>Caste </label> <input class="form-control input-lg" name="caste" id="caste" required="" type="text" value="<?php echo $res_select['caste'];?>"> </div> <div class="col-md-12"> <h4 class="font-weight-bold pl-0 my-4 text-center"><strong>Correspondence Address</strong></h4></div> <div class="col-sm-6"> <label for="address">Address</label> <input type="text" class="form-control" id="address" name="address" value="<?php echo $res_select['address'];?>" > </div> <div class="col-sm-6"> <label for="country">Country</label> <input type="text" class="form-control" id="country" name="country" value="<?php echo $res_select['country'];?>"> </div> <div class="col-sm-4"> <label for="state">State</label> <input type="text" class="form-control" id="state" name="state" value="<?php echo $res_select['state'];?>"> </div> <div class="col-sm-4"> <label for="district">District</label> <input type="text" class="form-control" id="district" name="district" value="<?php echo $res_select['district'];?>"> </div> <div class="col-sm-4"> <label for="pincode">Pincode</label> <input type="text" class="form-control" id="pincode" name="pincode" value="<?php echo $res_select['pincode'];?>"> </div> <div class="col-sm-12"> <h5 class=""><input type="checkbox" name="homepostalcheck" id="homepostalcheck"/>Same as Correspondence Address</h5> <h4 class="text-center">Permanent Address</h4> </div> <div class="col-sm-6"> <label for="paddress">Address</label> <input type="text" class="form-control" id="paddress" name="paddress" value="<?php echo $res_select['paddress'];?>"> </div> <div class="col-sm-6"> <label for="country">Country</label> <input type="text" class="form-control" id="pcountry" name="pcountry" value="<?php echo $res_select['pcountry'];?>"> </div> <div class="col-sm-4"> <label for="state">State</label> <input type="text" class="form-control" id="pstate" name="pstate" value="<?php echo $res_select['pstate'];?>"> </div> <div class="col-sm-4"> <label for="district">District</label> <input type="text" class="form-control" id="pdistrict" name="pdistrict" value="<?php echo $res_select['pdistrict'];?>"> </div> <div class="col-sm-4"> <label for="pincode">Pincode</label> <input type="text" class="form-control" id="ppincode" name="ppincode" value="<?php echo $res_select['ppincode'];?>"> </div> <div class="col-sm-12"> <label for="city">Choice Of Exam City</label> </div> <div class="col-sm-3"> <input type="text" class="form-control" id="examcity1" name="examcity1" value="<?php echo $res_select['examcity1'];?>"> </div> <div class="col-sm-3"> <input type="text" class="form-control" id="examcity2" name="examcity2" value="<?php echo $res_select['examcity2'];?>"> </div> <div class="col-sm-3"> <input type="text" class="form-control" id="examcity3" name="examcity3" value="<?php echo $res_select['examcity3'];?>" > </div> <div class="col-sm-3"> <input type="text" class="form-control" id="examcity4" name="examcity4" value="<?php echo $res_select['examcity4'];?>"> </div> <div class="col-sm-12"> <label for="military">Military School Prefrence Choice Of RMS In Order Of Your Prefrence </label> </div> <div class="col-sm-3"> <input class="sel" type="text" id="militaryprefrence1" name="militaryprefrence1" value="<?php echo $res_select['militaryprefrence1'];?>"> </div> <div class="col-sm-3"> <input class="sel" type="text" id="militaryprefrence2" name="militaryprefrence2" value="<?php echo $res_select['militaryprefrence2'];?>"> </div> <div class="col-sm-3"> <input class="sel" type="text" id="militaryprefrence3" name="militaryprefrence3" value="<?php echo $res_select['militaryprefrence3'];?>"> </div> <div class="col-sm-3"> <input class="sel" type="text" id="militaryprefrence4" name="militaryprefrence4" value="<?php echo $res_select['militaryprefrence4'];?>"> </div> <div class="col-sm-12"> <label for="military">military school exam center choose city prefrence</label> </div> <div class="col-sm-4"> <input type="text" class="form-control" id="cityprefrence1" name="cityprefrence1" value="<?php echo $res_select['cityprefrence1'];?>"> </div> <div class="col-sm-4"> <input type="text" class="form-control" id="cityprefrence2" name="cityprefrence2" value="<?php echo $res_select['cityprefrence2'];?>"> </div> <div class="col-sm-4"> <input type="text" class="form-control" id="cityprefrence3" name="cityprefrence3" value="<?php echo $res_select['cityprefrence3'];?>"> </div> <div class="col-sm-12"> <h3 class="text-center">Father Details</h3> </div> <div class="col-sm-3"> <label for="name ">Father Name </label> <input type="text" class="form-control" id="fname" name="fname" value="<?php echo $res_select['fname'];?>"> </div> <div class="col-sm-2"> <label for="category ">Category </label> <input type="text" class="form-control" id="fcategory " name="fcategory" value="<?php echo $res_select['fcategory'];?>"> </div> <div class="col-sm-5"> <label for="depended">Name of Depended Record Office </label> <input type="text" class="form-control" id="nameofdepended " name="nameofdepended" value="<?php echo $res_select['nameofdepended'];?>"> </div> <div class="col-sm-2"> <label for="army">APO</label> <input type="text" class="form-control" id="apo" name="apo" value="<?php echo $res_select['apo'];?>"> </div> <div class="col-sm-3"> <label for="army">Army No</label> <input type="text" class="form-control" id="armyno" name="armyno" value="<?php echo $res_select['armyno'];?>"> </div> <div class="col-sm-3"> <label for="unit">Unit Pin No</label> <input type="text" class="form-control" id="unitno" name="unitno" value="<?php echo $res_select['unitno'];?>"> </div> <div class="col-sm-3"> <label for="mobile">Mobile No</label> <input type="text" class="form-control" id="fphone" name="fphone" pattern="[7-9]{1}[0-9]{9}" value="<?php echo $res_select['fphone'];?>"> </div> <div class="col-sm-3"> <label for="aadhar">Aadhar Number</label> <input type="text" class="form-control" id="faadhar" name="faadhar" maxLength="19" data-type="adhaar-number" value="<?php echo $res_select['faadhar'];?>" > </div> <div class="col-sm-12"> <h3 class="text-center">Mother Details</h3> </div> <div class="col-sm-4"> <label for="mname">Mother Name</label> <input type="text" class="form-control" id="mname" name="mname" value="<?php echo $res_select['mname'];?>"> </div> <div class="col-sm-4"> <label for="mobile">Mobile Number</label> <input type="text" class="form-control" id="mphone" name="mphone" pattern="[7-9]{1}[0-9]{9}" value="<?php echo $res_select['mphone'];?>" > </div> <div class="col-sm-4"> <label for="aadhar">Aadhar Number</label> <input type="text" class="form-control" id="maadhar" name="maadhar" maxLength="19" data-type="adhaar-number" value="<?php echo $res_select['maadhar'];?>" > </div> <div class="col-md-4"> <label>Profile Photo</label> <?php if(!empty($res_select['photo'])){ ?> <img src="upload/photo/<?php echo $res_select['photo'];?>" class="img-responsive" style="height:100px;" /> <a href="profileedit.php?delimg=<?php echo $res_select['id'];?>" class="btn btn-block btn-danger btn-sm" style="width:121px; margin-top:20px;">Remove Image</a> <input type="hidden" name="photo" id="photo" value="<?php echo $res_select['photo']?>" /> <?php } else { ?> <input class="form-control input-lg" type="file" name="photo" id="photo" value=""/> <?php } ?> </div> <div class="col-md-4"> <label>Signature</label> <?php if(!empty($res_select['signature'])){ ?> <img src="upload/signature/<?php echo $res_select['signature']?>" class="img-responsive" style="height:100px;" /> <a href="profileedit.php?delimg2=<?php echo $res_select['id'];?>" class="btn btn-block btn-danger btn-sm" style="width: 121px; margin-top:20px;">Remove Image</a> <input type="hidden" name="signature" id="signature" value="<?php echo $res_select['signature']?>" /> <?php } else { ?> <input type="file" name="signature" class="form-control"> <?php } ?> </div> <div class="col-sm-4"> <label for=""> Age</label> <?php if(!empty($res_select['age'])){ ?> <img src="upload/age/<?php echo $res_select['age']?>" class="img-responsive" style="height:100px;" /> <a href="profileedit.php?delimg1=<?php echo $res_select['id'];?>" class="btn btn-block btn-danger btn-sm" style="width: 121px; margin-top:20px;">Remove Image</a> <input type="hidden" name="age" id="age" value="<?php echo $res_select['age']?>" /> <?php } else { ?> <input type="file" name="age" class="form-control"> <?php } ?> </div> <div class="col-md-4"> <label>domicile</label> <?php if(!empty($res_select['domicle'])){ ?> <img src="upload/domicile/<?php echo $res_select['domicle']?>" class="img-responsive" style="height:100px;" /> <a href="profileedit.php?delimg9=<?php echo $res_select['id'];?>" class="btn btn-block btn-danger btn-sm" style="width:121px;margin-top:20px;">Remove Image</a> <input type="hidden" name="domicle" id="domicle" value="<?php echo $res_select['domicle']?>" /> <?php } else { ?> <input type="file" name="domicle" class="form-control"> <?php } ?> </div> <div class="col-md-4"> <label>Caste</label> <?php if(!empty($res_select['cast'])){ ?> <img src="upload/cast/<?php echo $res_select['cast']?>" class="img-responsive" style="height:100px;" /> <a href="profileedit.php?delimg3=<?php echo $res_select['id'];?>" class="btn btn-block btn-danger btn-sm" style="width: 121px; margin-top:20px;">Remove Image</a> <input type="hidden" name="cast" id="cast" value="<?php echo $res_select['cast']?>" /> <?php } else { ?> <input type="file" name="cast" class="form-control"> <?php } ?> </div> </div> <div class="row"> <div class="col-md-2"> <input type="submit" name="datafrmSubmit" id="datafrmSubmit" class="btn btn-block btn-primary" ></i> </div> </div> </div> </form></div> </div> </div> </div> </section> <!--SECTION END--> <?php include 'footer.php' ?> <script> $('[data-type="adhaar-number"]').keyup(function() { var value = $(this).val(); value = value.replace(/\D/g, "").split(/(?:([\d]{4}))/g).filter(s => s.length > 0).join("-"); $(this).val(value); }); $('[data-type="adhaar-number"]').on("change, blur", function() { var value = $(this).val(); var maxLength = $(this).attr("maxLength"); if (value.length != maxLength) { $(this).addClass("highlight-error"); } else { $(this).removeClass("highlight-error"); } }); </script> <script> function setBillingAddress(){ if ($("#homepostalcheck").is(":checked")) { $('#paddress').val($('#address').val()); $('#paddress').attr('disabled', 'disabled'); $('#paddress1').val($('#address1').val()); $('#paddress1').attr('disabled', 'disabled'); $('#pcountry').val($('#country').val()); $('#pcountry').attr('disabled', 'disabled'); $('#pstate').val($('#state').val()); $('#pstate').attr('disabled', 'disabled'); $('#pdistrict').val($('#district').val()); $('#pdistrict').attr('disabled', 'disabled'); $('#ppincode').val($('#pincode').val()); $('#ppincode').attr('disabled', 'disabled'); } else { $('#paddress').removeAttr('disabled'); $('#paddress1').removeAttr('disabled'); $('#pcountry').removeAttr('disabled'); $('#pstate').removeAttr('disabled'); $('#pdistrict').removeAttr('disabled'); $('#ppincode').removeAttr('disabled'); } } $('#homepostalcheck').click(function(){ setBillingAddress(); }) </script> <!--Import jQuery before materialize.js--> <script src="js/main.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/materialize.min.js"></script> <script src="js/custom.js"></script> </body> </html>