diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-09-28 16:29:16 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-09-28 16:29:16 +0530 |
commit | 71a5768da1b297c807beee4e3c6a4942126c66e9 (patch) | |
tree | 6a21f670cebf2b8ec7bdebf9ab92e589589bdce2 /Lab06/create_db.php | |
parent | c2f4b5442c065c2a7a6288ce46ed409aa054d8bb (diff) |
Lab06: Creating a MySQL Database with PHP and Storing HTML Form Data
Diffstat (limited to 'Lab06/create_db.php')
-rw-r--r-- | Lab06/create_db.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Lab06/create_db.php b/Lab06/create_db.php new file mode 100644 index 0000000..c220148 --- /dev/null +++ b/Lab06/create_db.php @@ -0,0 +1,23 @@ +<?php +$servername = "localhost"; +$username = "it"; +$password = "smit#1234"; + +//Create connection +$conn = new mysqli($servername, $username, $password); + +//Check connection +if ($conn->connect_error) { + die("Connection failed: " . $conn->connect_error); +} + +//Create database +$sql = "CREATE DATABASE it_202000096"; +if ($conn->query($sql) === TRUE) { + echo "Database created successfully"; +} else { + echo "Error creating database: " . $conn->error; +} + +$conn->close(); +?> |