hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
brandinvent.in
/
Upload FileeE
HOME
<?php include_once 'configuration/function-include.php'; $nav='candidates'; $postData = $uploadedFile = $statusMsg = ''; $msgClass = 'errordiv'; if(isset($_POST['submit'])){ // Get the submitted form data $postData = $_POST; $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $qualification = $_POST['qualification']; $exp = $_POST['exp']; $post = $_POST['post']; $message = $_POST['message']; // Check whether submitted data is not empty if(!empty($email) && !empty($name) && !empty($post) && !empty($message)){ // Validate email if(filter_var($email, FILTER_VALIDATE_EMAIL) === false){ $statusMsg = 'Please enter your valid email.'; }else{ $uploadStatus = 1; // Upload attachment file if(!empty($_FILES["attachment"]["name"])){ // File path config $targetDir = "upload/"; $fileName = basename($_FILES["attachment"]["name"]); $targetFilePath = $targetDir . $fileName; $fileType = pathinfo($targetFilePath,PATHINFO_EXTENSION); // Allow certain file formats $allowTypes = array('pdf', 'doc', 'docx', 'jpg', 'png', 'jpeg'); if(in_array($fileType, $allowTypes)){ // Upload file to the server if(move_uploaded_file($_FILES["attachment"]["tmp_name"], $targetFilePath)){ $uploadedFile = $targetFilePath; }else{ $uploadStatus = 0; $statusMsg = "Sorry, there was an error uploading your file."; } }else{ $uploadStatus = 0; $statusMsg = 'Sorry, only PDF, DOC, JPG, JPEG, & PNG files are allowed to upload.'; } } if($uploadStatus == 1){ // Recipient $toEmail = 'jobs@brandinvent.in'; // Sender $from = 'jobs@brandinvent.in'; $fromName = 'BrandInvent'; // Subject $emailSubject = 'Contact Request Submitted by '.$name; // Message $htmlContent = '<h2>Contact Request Submitted</h2> <p><b>Name:</b> '.$name.'</p> <p><b>Email:</b> '.$email.'</p> <p><b>Phone:</b> '.$phone.'</p> <p><b>Experience:</b> '.$exp.'</p> <p><b>Qualification:</b> '.$qualification.'</p> <p><b>Post Applied:</b> '.$post.'</p> <p><b>Message:</b><br/>'.$message.'</p>'; // Header for sender info $headers = "From: $fromName"." <".$from.">"; if(!empty($uploadedFile) && file_exists($uploadedFile)){ // Boundary $semi_rand = md5(time()); $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; // Headers for attachment $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\""; // Multipart boundary $message = "--{$mime_boundary}\n" . "Content-Type: text/html; charset=\"UTF-8\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $htmlContent . "\n\n"; // Preparing attachment if(is_file($uploadedFile)){ $message .= "--{$mime_boundary}\n"; $fp = @fopen($uploadedFile,"rb"); $data = @fread($fp,filesize($uploadedFile)); @fclose($fp); $data = chunk_split(base64_encode($data)); $message .= "Content-Type: application/octet-stream; name=\"".basename($uploadedFile)."\"\n" . "Content-Description: ".basename($uploadedFile)."\n" . "Content-Disposition: attachment;\n" . " filename=\"".basename($uploadedFile)."\"; size=".filesize($uploadedFile).";\n" . "Content-Transfer-Encoding: base64\n\n" . $data . "\n\n"; } $message .= "--{$mime_boundary}--"; $returnpath = "-f" . $email; // Send email $mail = mail($toEmail, $emailSubject, $message, $headers, $returnpath); // Delete attachment file from the server @unlink($uploadedFile); }else{ // Set content-type header for sending HTML email $headers .= "\r\n". "MIME-Version: 1.0"; $headers .= "\r\n". "Content-type:text/html;charset=UTF-8"; // Send email $mail = mail($toEmail, $emailSubject, $htmlContent, $headers); } // If mail sent if($mail){ $statusMsg = 'Your contact request has been submitted successfully !'; $msgClass = 'succdiv'; $postData = ''; }else{ $statusMsg = 'Your contact request submission failed, please try again.'; } } } }else{ $statusMsg = 'Please fill all the fields.'; } } ?> <?php include 'header.php';?> <!-- header toggler --> <span class="toggle_menu"> <span></span> </span> </header> <section class="page_title cs gradientvertical-background s-py-25"> <div class="container"> <div class="row"> <div class="divider-50"></div> <div class="col-md-12 text-center"> <h1 class="">Candidates</h1> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="index.php">Home</a> </li> <li class="breadcrumb-item active"> Candidates </li> </ol> </div> <div class="divider-50"></div> </div> </div> </section> <section class="pt-20 pb-30 s-py-md-75 s-py-lg-130 candidate-page"> <div class="container"> <div class="row"> <div class=" col-sm-12 contact-header text-center animate" data-animation="pullDown"> <h5> Submit </h5> <h4> Candidate CV </h4> </div> <?php if(!empty($statusMsg)){ ?> <p class="statusMsg <?php echo !empty($msgClass)?$msgClass:''; ?>"><?php echo $statusMsg; ?></p> <?php } ?> <form class="contact-form contact2 c-mb-20 animate" data-animation="pullUp" method="post" action="" enctype="multipart/form-data"> <div class="row"> <div class="col-xs-12 col-sm-6"> <div class="col-c-mb-60 form-group has-placeholder"> <label for="name">Full Name <span class="required">*</span> </label> <input type="text" required size="200" name="name" id="name" class="form-control" placeholder="Full Name"> </div> <div class="col-c-mb-60 form-group has-placeholder"> <label for="text">Phone number <span class="required">*</span> </label> <input type="text" required size="200" value="" name="phone" id="phone" class="form-control" placeholder="Phone number"> </div> <div class="col-c-mb-60 form-group has-placeholder"> <label for="email">Email address <span class="required">*</span> </label> <input type="email" required size="200" value="" name="email" id="email" class="form-control" placeholder="Email address"> </div> <div class="col-c-mb-60 form-group has-placeholder"> <label for="text">Experience <span class="required">*</span> </label> <select name="exp" id="exp"> <option value="0">Experience</option> <option value="1 Years">1 Years</option> <option value="2 Years">2 Years</option> <option value="3 Years">3 Years</option> <option value="4 Years">4 Years</option> <option value="5 Years">5 Years</option> </select> </div> <div class="col-c-mb-60 form-group has-placeholder"> <label for="text">Qualification <span class="required">*</span> </label> <select name="qualification" id="qualification"> <option value="0">Qualification</option> <option value="10th">10th</option> <option value="12th">12th</option> <option value="Graduation">Graduation</option> <option value="Post Graduation">Post Graduation</option> <option value="Diploma">Diploma</option> </select> </div> <div class="col-c-mb-60 form-group"> <input type="file" name="attachment" class="custom-file-input button" id="validatedCustomFile"> <label class="custom-file-label" for="validatedCustomFile">Attach CV</label> </div> </div> <div class="col-xs-12 col-sm-6"> <div class="col-c-mb-60 form-group has-placeholder"> <label for="text">Post Applied For <span class="required">*</span> </label> <input type="text" required size="200" value="" name="post" id="post" class="form-control" placeholder="Post Applied For"> </div> <div class="form-group has-placeholder"> <label for="message">Comments</label> <textarea required rows="5" cols="40" name="message" id="message" class="form-control" placeholder="comments"></textarea> </div> </div> </div> <div class="row mt-1"> <div class="col-sm-12"> <div class="form-group text-center"> <button type="submit" id="submit" name="submit" class="btn theme_button">Submit CV</button> </div> </div> </div> </form> </div> </div> </section> <?php include 'footer.php';?>