How to make a to-do-list using PHP and connecting it using MySQL
It’s relatively straight forward.
First, determine how you want to persist the To-Do’s.
If you’re happy to store them in a table in MySQL, great.
Programmatically, we can select all To-Do item’s from the table like so.
- = ‘mysql:dbname=to_do_example;host=127.0.0.1’;
- = ‘root’;
- = ‘password;
- = new PDO(, , );
- = ->query(‘SELECT * FROM TODOS’);
- ->execute();
- = ->fetchAll();
- foreach( as ){
- //For each todo item in the todos table, do something.
- }
Si possono anche inserire le cose da fare nella tabella seguendo la stessa struttura della preparazione di una query SQL e forse legando i valori alla query, eseguendo la query e recuperando i risultati, se applicabile.
Si potrebbe poi inviare l'array di cose da fare al frontend attraverso una rest API, o se si ha un motore di template, si può fare il rendering del template sul server e poi inviarlo come file HTML al client.
Articoli simili
- How to make the background image of a button disappear when we click it, and make it appear on another button when we click it in Visual Studio
- È possibile creare applicazioni Android usando PHP e MySQL?
- How to export selective data from HDFS/Hive to MySQL/DB2 using Sqoop
- How to post data to Firebase with a curl command using PHP
- What is a reliable VoIP provider that offers UK and German numbers, inbound + outbound and also has Android and iPhone apps?