-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterviewinsert.php
More file actions
29 lines (25 loc) · 1.09 KB
/
interviewinsert.php
File metadata and controls
29 lines (25 loc) · 1.09 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
<?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
$name = mysqli_real_escape_string($link, $_REQUEST['name']);
$eemail = mysqli_real_escape_string($link, $_REQUEST['eemail']);
$company = mysqli_real_escape_string($link, $_REQUEST['company']);
$location = mysqli_real_escape_string($link, $_REQUEST['location']);
$date = mysqli_real_escape_string($link, $_REQUEST['date']);
$time = mysqli_real_escape_string($link, $_REQUEST['time']);
// Attempt insert query execution
$sql = "INSERT INTO interview (name, eemail, company, location, date, time) VALUES ('$name', '$eemail', '$company', '$location', '$date', '$time')";
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);
?>