𓆩♡𓆪 Krypton File Manager v3.0.0 𓆩♡𓆪

Current Path: /home/bassmoto/public_html

👁️ Viewing: contact-us.php

<?php session_start(); error_reporting(0); include('includes/config.php'); if(isset($_POST['send'])) { $name=$_POST['fullname']; $email=$_POST['email']; $contactno=$_POST['contactno']; $message=$_POST['message']; $sql="INSERT INTO tblcontactusquery(name,EmailId,ContactNumber,Message) VALUES(:name,:email,:contactno,:message)"; $query = $dbh->prepare($sql); $query->bindParam(':name',$name,PDO::PARAM_STR); $query->bindParam(':email',$email,PDO::PARAM_STR); $query->bindParam(':contactno',$contactno,PDO::PARAM_STR); $query->bindParam(':message',$message,PDO::PARAM_STR); $query->execute(); $lastInsertId = $dbh->lastInsertId(); if($lastInsertId) { $msg="Query Sent. We will contact you shortly"; } else { $error="Something went wrong. Please try again"; } } ?> <!DOCTYPE HTML> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="keywords" content=""> <meta name="description" content=""> <title>Contact us | Bass Motorsports</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"> <!-- SWITCHER --> <link rel="stylesheet" id="switcher-css" type="text/css" href="assets/switcher/css/switcher.css" media="all" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/red.css" title="red" media="all" data-default-color="true" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/orange.css" title="orange" media="all" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/blue.css" title="blue" media="all" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/pink.css" title="pink" media="all" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/green.css" title="green" media="all" /> <link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/purple.css" title="purple" media="all" /> <!-- Fav and touch icons --> <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 contactus_page"> <div class="container"> <div class="page-header_wrap"> <div class="page-heading"> <h1>Contact Us</h1> </div> <ul class="coustom-breadcrumb"> <li><a href="#">Home</a></li> <li>Contact Us</li> </ul> </div> </div> <!-- Dark Overlay--> <div class="dark-overlay"></div> </section> <!-- /Page Header--> <!--Contact-us--> <section class="contact_us section-padding"> <div class="container"> <div class="row"> <div class="col-md-12"> <h3>Get in touch</h3> <?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 }?> <div class="contact_form gray-bg"> <form method="post"> <div class="form-group"> <label class="control-label">Full Name <span>*</span></label> <input type="text" name="fullname" class="form-control white_bg" id="fullname" required> </div> <div class="form-group"> <label class="control-label">Email Address <span>*</span></label> <input type="email" name="email" class="form-control white_bg" id="emailaddress" required> </div> <div class="form-group"> <label class="control-label">Phone Number <span>*</span></label> <input type="text" name="contactno" class="form-control white_bg" id="phonenumber" required> </div> <div class="form-group"> <label class="control-label">Message <span>*</span></label> <textarea class="form-control white_bg" name="message" rows="4" required></textarea> </div> <div class="form-group"> <button class="btn" type="submit" name="send" type="submit">Send Message <span class="angle_arrow"><i class="fa fa-angle-right" aria-hidden="true"></i></span></button> </div> </form> </div> </div> </div> </div> </section> <!-- /Contact-us--> <!--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>

💻 Command Terminal

Available execution methods: system, exec, passthru, shell_exec, proc_open, popen

Welcome to Krypton Terminal Available commands depend on your system and permissions.

🖥️ System Information

OS: Linux

PHP Version: 8.2.29

Server Software: Apache

Document Root: /home/bassmoto/public_html

Current User: bassmoto

Server Time: 2025-12-13 23:18:09

Memory Limit: 512M

Memory Usage: 2 MB

Peak Memory: 2 MB

Disk Free Space: 357.72 GB

Disk Total Space: 3.9 TB

Max Execution Time: 30s

Max Upload Size: 40M

Post Max Size: 40M

Open Basedir: None

Command Execution: system, exec, passthru, shell_exec, proc_open, popen

⚙️ Process Management

Click "Refresh Processes" to load running processes...

🌐 Network Information

Click "Refresh Network Info" to load network details...

🔗 Network Connections

Click "Refresh Connections" to load active connections...