forked from RAI-ADF/RAI_Task_4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputInventory.php
More file actions
35 lines (26 loc) · 739 Bytes
/
InputInventory.php
File metadata and controls
35 lines (26 loc) · 739 Bytes
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
31
32
33
34
35
<?php
echo "My first PHP script!";
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "task4";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
$username = $_POST['username'];
$total = $_POST['total'];
$name = $_POST['name'];
$id = $_POST['id'];
$sql = "INSERT INTO inventory (id, username, name, total)
VALUES ('$id','$username','$name','$total')";
if ($conn->query($sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $conn->error;
}
$conn->close();
?>