forked from if-itb/IF3110-2015-T1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestiondata.php
29 lines (24 loc) · 860 Bytes
/
questiondata.php
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
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "stackexchange";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$Name = mysqli_real_escape_string($conn,$_POST["Name"]);
$Email = mysqli_real_escape_string($conn,$_POST["Email"]);
$Topik = mysqli_real_escape_string($conn,$_POST["Topik"]);
$Content = mysqli_real_escape_string($conn,$_POST["Content"]);
$sql = "insert into question(`Name`,`Email`,`Topik`,`Content`,`Date`) values ('$Name','$Email','$Topik','$Content',now())";
if ($conn->query($sql) === TRUE ){
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$conn->close();
header("Location: index.php");
?>