Database Project Report
Database Project Report
1. Introduction
This report documents the process of designing, developing, and implementing a database
project using tools like XAMPP, VS Code, and a local server.
The project aims to create a functional database system for [specific use case, e.g., library
management, e-commerce, hospital management].
❖ XAMPP:
A cross-platform web server solution stack used for local development. It includes Apache
(web server), MySQL (database), and PHP (server-side scripting).
❖ VS Code:
A lightweight and powerful code editor used for writing and debugging code.
❖ MySQL:
A relational database management system (RDBMS) for storing and managing data.
❖ PHP
A server-side scripting language used to interact with the database and generate dynamic
content.
❖ HTML/CSS/JavaScript:
❖ Browser:
2. Starting the Apache and MySQL services from the XAMPP Control Panel.
2. Installing extensions the PHP Intelephense (for PHP support) and Live Server (for frontend
testing).
);
4.2 Inserting Sample Data
Example:
Example:
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "form";
// Create connection
<?php
$con =new mysqli('localhost','root','','form');
// Check connection
if ($conn->connect_error) {
?>
6. Frontend Development
6.1 HTML/CSS.
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Your email"
required>
<label for="password">password</label>
<input type="password" id="password" name="password" placeholder="Your
password" required>
<label for="Surmame">Surmame</label>
<input type="text" id="Surmame" name="Surmame" placeholder="Surmame"
required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" placeholder="Your message"
required></textarea>
<div class="btn">
<button type="submit">Submit</button>
</div>
</form>
6.2 Testing with Live Server
- Use the Live Server extension in VS Code to test the frontend in a browser.
This project successfully demonstrates the creation of a database system using XAMPP, VS
Code, and a local server. The system meets the requirements and provides a scalable solution for
[specific use case].There will be more Future enhancements in this project.
REFERENCES
❖ XAMPP Documentation:
[https://www.apachefriends.org/](https://www.apachefriends.org/)
❖ VS Code Documentation:
[https://code.visualstudio.com/docs](https://code.visualstudio.com/docs)
❖ PHP Manual:
[https://www.php.net/manual/en/](https://www.php.net/manual/en/)
❖ MySQL Documentation:
[https://dev.mysql.com/doc/](https://dev.mysql.com/doc/)