����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.135.217.244 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/ |
Upload File : |
<?php session_start(); //error_reporting(0); include('includes/config.php'); if(strlen($_SESSION['login'])==0) { header('location:index.php'); } else{ // code for billing address updation if(isset($_POST['update'])) { $baddress=$_POST['billingaddress']; $bstate=$_POST['bilingstate']; $bcity=$_POST['billingcity']; $bpincode=$_POST['billingpincode']; $query=mysqli_query($con,"update users set billingAddress='$baddress',billingState='$bstate',billingCity='$bcity',billingPincode='$bpincode' where id='".$_SESSION['id']."'"); if($query) { echo "<script>alert('Dirección de facturación a sido actualizada');</script>"; } } // code for Shipping address updation if(isset($_POST['shipupdate'])) { $saddress=$_POST['shippingaddress']; $sstate=$_POST['shippingstate']; $scity=$_POST['shippingcity']; $spincode=$_POST['shippingpincode']; $query=mysqli_query($con,"update users set shippingAddress='$saddress',shippingState='$sstate',shippingCity='$scity',shippingPincode='$spincode' where id='".$_SESSION['id']."'"); if($query) { echo "<script>alert('Shipping Address has been updated');</script>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <!-- Meta --> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta name="description" content=""> <meta name="author" content=""> <meta name="keywords" content="MediaCenter, Template, eCommerce"> <meta name="robots" content="all"> <title>Mi cuenta</title> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <!-- Customizable CSS --> <link rel="stylesheet" href="assets/css/main.css"> <link rel="stylesheet" href="assets/css/green.css"> <link rel="stylesheet" href="assets/css/owl.carousel.css"> <link rel="stylesheet" href="assets/css/owl.transitions.css"> <!--<link rel="stylesheet" href="assets/css/owl.theme.css">--> <link href="assets/css/lightbox.css" rel="stylesheet"> <link rel="stylesheet" href="assets/css/animate.min.css"> <link rel="stylesheet" href="assets/css/rateit.css"> <link rel="stylesheet" href="assets/css/bootstrap-select.min.css"> <!-- Demo Purpose Only. Should be removed in production --> <link rel="stylesheet" href="assets/css/config.css"> <link href="assets/css/green.css" rel="alternate stylesheet" title="Green color"> <link href="assets/css/blue.css" rel="alternate stylesheet" title="Blue color"> <link href="assets/css/red.css" rel="alternate stylesheet" title="Red color"> <link href="assets/css/orange.css" rel="alternate stylesheet" title="Orange color"> <link href="assets/css/dark-green.css" rel="alternate stylesheet" title="Darkgreen color"> <link rel="stylesheet" href="assets/css/font-awesome.min.css"> <link href='http://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel='stylesheet' type='text/css'> <link rel="shortcut icon" href="assets/images/favicon.ico"> </head> <body class="cnt-home"> <header class="header-style-1"> <!-- ============================================== TOP MENU ============================================== --> <?php include('includes/top-header.php');?> <!-- ============================================== TOP MENU : END ============================================== --> <?php include('includes/main-header.php');?> <!-- ============================================== NAVBAR ============================================== --> <?php include('includes/menu-bar.php');?> <!-- ============================================== NAVBAR : END ============================================== --> </header> <!-- ============================================== HEADER : END ============================================== --> <div class="breadcrumb"> <div class="container"> <div class="breadcrumb-inner"> <ul class="list-inline list-unstyled"> <li><a href="#">Inicio</a></li> <li class='active'>Checkout</li> </ul> </div><!-- /.breadcrumb-inner --> </div><!-- /.container --> </div><!-- /.breadcrumb --> <div class="body-content outer-top-bd"> <div class="container"> <div class="checkout-box inner-bottom-sm"> <div class="row"> <div class="col-md-8"> <div class="panel-group checkout-steps" id="accordion"> <!-- checkout-step-01 --> <div class="panel panel-default checkout-step-01"> <!-- panel-heading --> <div class="panel-heading"> <h4 class="unicase-checkout-title"> <a data-toggle="collapse" class="" data-parent="#accordion" href="#collapseOne"> <span>1</span>Dirección de facturación </a> </h4> </div> <!-- panel-heading --> <div id="collapseOne" class="panel-collapse collapse in"> <!-- panel-body --> <div class="panel-body"> <div class="row"> <div class="col-md-12 col-sm-12 already-registered-login"> <?php $query=mysqli_query($con,"select * from users where id='".$_SESSION['id']."'"); while($row=mysqli_fetch_array($query)) { ?> <form class="register-form" role="form" method="post"> <div class="form-group"> <label class="info-title" for="Billing Address">Dirección de facturación<span>*</span></label> <textarea class="form-control unicase-form-control text-input" " name="billingaddress" required="required"><?php echo $row['billingAddress'];?></textarea> </div> <div class="form-group"> <label class="info-title" for="Billing State ">Estado <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="bilingstate" name="bilingstate" value="<?php echo $row['billingState'];?>" required> </div> <div class="form-group"> <label class="info-title" for="Billing City">Ciudad <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="billingcity" name="billingcity" required="required" value="<?php echo $row['billingCity'];?>" > </div> <div class="form-group"> <label class="info-title" for="Billing Pincode">Código postal <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="billingpincode" name="billingpincode" required="required" value="<?php echo $row['billingPincode'];?>" > </div> <button type="submit" name="update" class="btn-upper btn btn-primary checkout-page-button">Actualizar</button> </form> <?php } ?> </div> <!-- already-registered-login --> </div> </div> <!-- panel-body --> </div><!-- row --> </div> <!-- checkout-step-01 --> <!-- checkout-step-02 --> <div class="panel panel-default checkout-step-02"> <div class="panel-heading"> <h4 class="unicase-checkout-title"> <a data-toggle="collapse" class="collapsed" data-parent="#accordion" href="#collapseTwo"> <span>2</span>Dirección de envío </a> </h4> </div> <div id="collapseTwo" class="panel-collapse collapse"> <div class="panel-body"> <?php $query=mysqli_query($con,"select * from users where id='".$_SESSION['id']."'"); while($row=mysqli_fetch_array($query)) { ?> <form class="register-form" role="form" method="post"> <div class="form-group"> <label class="info-title" for="Shipping Address">Dirección de envío<span>*</span></label> <textarea class="form-control unicase-form-control text-input" " name="shippingaddress" required="required"><?php echo $row['shippingAddress'];?></textarea> </div> <div class="form-group"> <label class="info-title" for="Billing State ">Estado <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="shippingstate" name="shippingstate" value="<?php echo $row['shippingState'];?>" required> </div> <div class="form-group"> <label class="info-title" for="Billing City">Ciudad <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="shippingcity" name="shippingcity" required="required" value="<?php echo $row['shippingCity'];?>" > </div> <div class="form-group"> <label class="info-title" for="Billing Pincode">Código postal <span>*</span></label> <input type="text" class="form-control unicase-form-control text-input" id="shippingpincode" name="shippingpincode" required="required" value="<?php echo $row['shippingPincode'];?>" > </div> <button type="submit" name="shipupdate" class="btn-upper btn btn-primary checkout-page-button">Actualizar</button> </form> <?php } ?> </div> </div> </div> <!-- checkout-step-02 --> </div><!-- /.checkout-steps --> </div> <?php include('includes/myaccount-sidebar.php');?> </div><!-- /.row --> </div><!-- /.checkout-box --> <?php include('includes/brands-slider.php');?> </div> </div> <?php include('includes/footer.php');?> <script src="assets/js/jquery-1.11.1.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/bootstrap-hover-dropdown.min.js"></script> <script src="assets/js/owl.carousel.min.js"></script> <script src="assets/js/echo.min.js"></script> <script src="assets/js/jquery.easing-1.3.min.js"></script> <script src="assets/js/bootstrap-slider.min.js"></script> <script src="assets/js/jquery.rateit.min.js"></script> <script type="text/javascript" src="assets/js/lightbox.min.js"></script> <script src="assets/js/bootstrap-select.min.js"></script> <script src="assets/js/wow.min.js"></script> <script src="assets/js/scripts.js"></script> <!-- For demo purposes – can be removed on production --> <script src="switchstylesheet/switchstylesheet.js"></script> <script> $(document).ready(function(){ $(".changecolor").switchstylesheet( { seperator:"color"} ); $('.show-theme-options').click(function(){ $(this).parent().toggleClass('open'); return false; }); }); $(window).bind("load", function() { $('.show-theme-options').delay(2000).trigger('click'); }); </script> </body> </html> <?php } ?>