simple todo list php
v.0.0.1
A basic to-do list application built with PHP and jQuery. Users can add, edit, and delete tasks seamlessly. Ideal for beginners looking to learn PHP and MySQL.
Clone the Repository:
git clone https://github.com/yourusername/simple-todo-list-php.gitNavigate to the Project Directory:
cd simple-todo-list-phpSet Up the Database:
todo_list.mysql -u yourusername -p todo_list < database.sqlConfigure the Database Connection:
config.php file and update the database credentials.
<?php
// config.php
$servername = "localhost";
$username = "yourusername";
$password = "yourpassword";
$dbname = "todo_list";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>Start a Local PHP Server:
php -S localhost:8000Access the Application:
http://localhost:8000.Here’s a basic file structure for your to-do list application:
simple-todo-list-php/
├── database.sql
├── config.php
├── index.php
├── get_task.php
├── add_task.php
├── edit_task.php
├── delete_task.php
├── styles.css
└── script.js