BLACKSITE
:
216.73.217.4
:
104.37.75.190 / alpenpass.ca
:
Linux server3.pointsplan.com 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
:
/
home2
/
apca
/
www
/
Upload File:
files >> //home2/apca/www/post-testimonial.php
<?php session_start(); error_reporting(0); include('includes/config.php'); if(strlen($_SESSION['login'])==0) { header('location:index.php'); } else{ if(isset($_POST['submit'])) { $testimonoial=$_POST['testimonial']; $email=$_SESSION['login']; $sql="INSERT INTO tbltestimonial(UserEmail,Testimonial) VALUES(:email,:testimonoial)"; $query = $dbh->prepare($sql); $query->bindParam(':testimonoial',$testimonoial,PDO::PARAM_STR); $query->bindParam(':email',$email,PDO::PARAM_STR); $query->execute(); $lastInsertId = $dbh->lastInsertId(); if($lastInsertId) { $msg="Testimonail submitted successfully"; } else { $error="Something went wrong. Please try again"; } } ?> <!DOCTYPE HTML> <html lang="en"> <head> <title>Alpenpass Motorcycle Rental Portal |Post testimonial</title> <!--Bootstrap --> <link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css"> <!--Custome Style --> <link rel="stylesheet" href="assets/css/style.css" type="text/css"> <!--OWL Carousel slider--> <link rel="stylesheet" href="assets/css/owl.carousel.css" type="text/css"> <link rel="stylesheet" href="assets/css/owl.transitions.css" type="text/css"> <!--slick-slider --> <link href="assets/css/slick.css" rel="stylesheet"> <!--bootstrap-slider --> <link href="assets/css/bootstrap-slider.min.css" rel="stylesheet"> <!--FontAwesome Font Style --> <link href="assets/css/font-awesome.min.css" rel="stylesheet"> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/images/favicon-icon/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/favicon-icon/apple-touch-icon-114-precomposed.html"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/favicon-icon/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="assets/images/favicon-icon/apple-touch-icon-57-precomposed.png"> <link rel="shortcut icon" href="assets/images/favicon-icon/favicon.png"> <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet"> <style> .errorWrap { padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #dd3d36; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } .succWrap{ padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #5cb85c; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } </style> </head> <body> <!--Header--> <?php include('includes/header.php');?> <!-- /Header --> <!--Page Header--> <section class="page-header profile_page"> <div class="container"> <div class="page-header_wrap"> <div class="page-heading"> <h1>Post Testimonial</h1> </div> <ul class="coustom-breadcrumb"> <li><a href="#">Home</a></li> <li>Post Testimonial</li> </ul> </div> </div> <!-- Dark Overlay--> <div class="dark-overlay"></div> </section> <!-- /Page Header--> <?php $useremail=$_SESSION['login']; $sql = "SELECT * from tblusers where EmailId=:useremail"; $query = $dbh -> prepare($sql); $query -> bindParam(':useremail',$useremail, PDO::PARAM_STR); $query->execute(); $results=$query->fetchAll(PDO::FETCH_OBJ); $cnt=1; if($query->rowCount() > 0) { foreach($results as $result) { ?> <section class="user_profile inner_pages"> <div class="container"> <div class="user_profile_info gray-bg padding_4x4_40"> <div class="upload_user_logo"> <img src="assets/images/profile.png" alt="image"> </div> <div class="dealer_info"> <h5><?php echo htmlentities($result->FullName);?></h5> <p><?php echo htmlentities($result->Address);?><br> <?php echo htmlentities($result->City);?> <?php echo htmlentities($result->Country); }}?></p> </div> </div> <div class="row"> <div class="col-md-3 col-sm-3"> <?php include('includes/sidebar.php');?> <div class="col-md-6 col-sm-8"> <div class="profile_wrap"> <h5 class="uppercase underline">Post a Testimonial</h5> <?php if($error){?><div class="errorWrap"><strong>ERROR</strong>:<?php echo htmlentities($error); ?> </div><?php } else if($msg){?><div class="succWrap"><strong>SUCCESS</strong>:<?php echo htmlentities($msg); ?> </div><?php }?> <form method="post"> <div class="form-group"> <label class="control-label">Testimonial</label> <textarea class="form-control white_bg" name="testimonial" rows="4" required=""></textarea> </div> <div class="form-group"> <button type="submit" name="submit" class="btn">Save <span class="angle_arrow"><i class="fa fa-angle-right" aria-hidden="true"></i></span></button> </div> </form> </div> </div> </div> </div> </section> <!--/Profile-setting--> <<!--Footer --> <?php include('includes/footer.php');?> <!-- /Footer--> <!--Back to top--> <div id="back-top" class="back-top"> <a href="#top"><i class="fa fa-angle-up" aria-hidden="true"></i> </a> </div> <!--/Back to top--> <!--Login-Form --> <?php include('includes/login.php');?> <!--/Login-Form --> <!--Register-Form --> <?php include('includes/registration.php');?> <!--/Register-Form --> <!--Forgot-password-Form --> <?php include('includes/forgotpassword.php');?> <!--/Forgot-password-Form --> <!-- Scripts --> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/interface.js"></script> <!--Switcher--> <script src="assets/switcher/js/switcher.js"></script> <!--bootstrap-slider-JS--> <script src="assets/js/bootstrap-slider.min.js"></script> <!--Slider-JS--> <script src="assets/js/slick.min.js"></script> <script src="assets/js/owl.carousel.min.js"></script> </body> </html> <?php } ?>