-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjobinsert.php
More file actions
30 lines (26 loc) · 1.26 KB
/
jobinsert.php
File metadata and controls
30 lines (26 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/* Attempt MySQL server connection. Assuming you are running MySQL
server with default setting (user 'root' with no password) */
$link = mysqli_connect("localhost", "root", "", "jobportal");
// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}
// Escape user inputs for security
$job_type = mysqli_real_escape_string($link, $_REQUEST['job_type']);
$job_designation = mysqli_real_escape_string($link, $_REQUEST['job_designation']);
$job_company = mysqli_real_escape_string($link, $_REQUEST['job_company']);
$skills = mysqli_real_escape_string($link, $_REQUEST['skills']);
$experience = mysqli_real_escape_string($link, $_REQUEST['experience']);
$salary = mysqli_real_escape_string($link, $_REQUEST['salary']);
$location = mysqli_real_escape_string($link, $_REQUEST['location']);
// Attempt insert query execution
$sql = "INSERT INTO job (job_type, job_designation, job_company, skills, experience, salary, location) VALUES ('$job_type', '$job_designation', '$job_company', '$skills', '$experience', '$salary', '$location')";
if(mysqli_query($link, $sql)){
echo "Records added successfully.";
} else{
echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}
// Close connection
mysqli_close($link);
?>