Server IP : 13.213.54.232 / Your IP : 216.73.216.72 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-172-31-17-110 6.8.0-1029-aws #31~22.04.1-Ubuntu SMP Thu Apr 24 21:16:18 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.1.33-67+ubuntu22.04.1+deb.sury.org+1 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/ |
Upload File : |
<?php include "header.php"; $todo= mysqli_real_escape_string($con,$_GET["id"]); ?> <!-- ***** Breadcrumb Area Start ***** --> <section class="section breadcrumb-area overlay-dark d-flex align-items-center"> <div class="container"> <div class="row"> <div class="col-12"> <!-- Breamcrumb Content --> <div class="breadcrumb-content d-flex flex-column align-items-center text-center"> <h2 class="text-white text-uppercase mb-3">Portfolio Details</h2> <ol class="breadcrumb"> <li class="breadcrumb-item"><a class="text-uppercase text-white" href="home">Home</a></li> <li class="breadcrumb-item text-white active">Portfolio</li> </ol> </div> </div> </div> </div> </section> <!-- ***** Breadcrumb Area End ***** --> <?php $rt=mysqli_query($con,"SELECT * FROM portfolio where id='$todo'"); $tr = mysqli_fetch_array($rt); $port_title = "$tr[port_title]"; $port_detail = "$tr[port_detail]"; $ufile = "$tr[ufile]"; ?> <!-- ***** About Area Start ***** --> <section class="section about-area ptb_100"> <div class="container"> <div class="row justify-content-between align-items-center"> <div class="col-12 col-lg-6"> <!-- About Thumb --> <div class="about-thumb text-center"> <img src="dashboard/uploads/portfolio/<?php print $ufile;?>" alt="img"> </div> </div> <div class="col-12 col-lg-6"> <!-- About Content --> <div class="about-content section-heading text-center text-lg-left pl-md-4 mt-5 mt-lg-0 mb-0"> <h2 class="mb-3"><?php print $port_title?></h2> <p><?php print $port_detail;?></p> <!-- Counter Area --> </div> </div> </div> </div> </section> <!-- ***** About Area End ***** --> <!-- ***** Our Goal Area End ***** --> <!-- ***** Team Area Start ***** --> <!-- ***** Team Area End ***** --> <!--====== Contact Area Start ======--> <section id="contact" class="contact-area ptb_100"> <div class="container"> <div class="row justify-content-between align-items-center"> <div class="col-12 col-lg-5"> <!-- Section Heading --> <div class="section-heading text-center mb-3"> <h2><?php print $contact_title ?></h2> <p class="d-none d-sm-block mt-4"><?php print $contact_text ?></p> </div> <!-- Contact Us --> <div class="contact-us"> <ul> <!-- Contact Info --> <li class="contact-info color-1 bg-hover active hover-bottom text-center p-5 m-3"> <span><i class="fas fa-mobile-alt fa-3x"></i></span> <a class="d-block my-2" href="tel:<?php print $phone1 ?>"> <h3><?php print $phone1 ?></h3> </a> </li> <!-- Contact Info --> <li class="contact-info color-3 bg-hover active hover-bottom text-center p-5 m-3"> <span><i class="fas fa-envelope-open-text fa-3x"></i></span> <a class="d-none d-sm-block my-2" href="mailto:<?php print $email1 ?>"> <h3><?php print $email1 ?></h3> </a> <a class="d-block d-sm-none my-2" href="mailto:<?php print $email1 ?>"> <h3><?php print $email1 ?></h3> </a> </li> </ul> </div> </div> <div class="col-12 col-lg-6 pt-4 pt-lg-0"> <!-- Contact Box --> <div class="contact-box text-center"> <!-- Contact Form --> <?php $status = "OK"; //initial status $msg=""; if(ISSET($_POST['save'])){ $name = mysqli_real_escape_string($con,$_POST['name']); $email = mysqli_real_escape_string($con,$_POST['email']); $phone = mysqli_real_escape_string($con,$_POST['phone']); $message = mysqli_real_escape_string($con,$_POST['message']); if ( strlen($name) < 5 ){ $msg=$msg."Name Must Be More Than 5 Char Length.<BR>"; $status= "NOTOK";} if ( strlen($email) < 9 ){ $msg=$msg."Email Must Be More Than 10 Char Length.<BR>"; $status= "NOTOK";} if ( strlen($message) < 10 ){ $msg=$msg."Message Must Be More Than 10 Char Length.<BR>"; $status= "NOTOK";} if ( strlen($phone) < 8 ){ $msg=$msg."Phone Must Be More Than 8 Char Length.<BR>"; $status= "NOTOK";} if($status=="OK") { $recipient="awolu_faith@live.com"; $formcontent="NAME:$name \n EMAIL: $email \n PHONE: $phone \n MESSAGE: $message"; $subject = "New Enquiry from Vogue Website"; $mailheader = "From: noreply@vogue.com \r\n"; $result= mail($recipient, $subject, $formcontent); if($result){ $errormsg= " <div class='alert alert-success alert-dismissible alert-outline fade show'> Enquiry Sent Successfully. We shall get back to you ASAP. <button type='button' class='btn-close' data-bs-dismiss='alert' aria-label='Close'></button> </div> "; //printing error if found in validation } } elseif ($status!=="OK") { $errormsg= " <div class='alert alert-danger alert-dismissible alert-outline fade show'> ".$msg." <button type='button' class='btn-close' data-bs-dismiss='alert' aria-label='Close'></button> </div>"; //printing error if found in validation } else{ $errormsg= " <div class='alert alert-danger alert-dismissible alert-outline fade show'> Some Technical Glitch Is There. Please Try Again Later Or Ask Admin For Help. <button type='button' class='btn-close' data-bs-dismiss='alert' aria-label='Close'></button> </div>"; //printing error if found in validation } } ?> <?php if($_SERVER['REQUEST_METHOD'] == 'POST') { print $errormsg; } ?> <form action="" method="post" enctype="multipart/form-data"> <div class="row"> <div class="col-12"> <div class="form-group"> <input type="text" class="form-control" name="name" placeholder="Name" required="required"> </div> <div class="form-group"> <input type="email" class="form-control" name="email" placeholder="Email" required="required"> </div> <div class="form-group"> <input type="text" class="form-control" name="phone" placeholder="Phone" required="required"> </div> </div> <div class="col-12"> <div class="form-group"> <textarea class="form-control" name="message" placeholder="Message" required="required"></textarea> </div> </div> <div class="col-12"> <button type="submit" class="btn btn-bordered active btn-block mt-3" name="save"><span class="text-white pr-3"><i class="fas fa-paper-plane"></i></span>Send Message</button> </div> </div> </form> <p class="form-message"></p> </div> </div> </div> </div> </section> <!--====== Contact Area End ======--> <!--====== Call To Action Area Start ======--> <section class="section cta-area bg-overlay ptb_100"> <div class="container"> <div class="row justify-content-center"> <div class="col-12 col-lg-10"> <!-- Section Heading --> <div class="section-heading text-center m-0"> <h2 class="text-white"><?php print $enquiry_title; ?></h2> <p class="text-white d-none d-sm-block mt-4"><?php print $enquiry_text; ?></p> <a href="contact" class="btn btn-bordered-white mt-4">Contact Us</a> </div> </div> </div> </div> </section> <!--====== Call To Action Area End ======--> <?php include "footer.php"; ?>