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.
- }
P>Pode também inserir os "to-do's" na tabela seguindo a mesma estrutura de preparação de uma consulta SQL e talvez ligando valores a essa consulta, executando a consulta e obtendo os resultados, se aplicável.
Pode então enviar esse array de "to-do's" para o seu frontend através de uma API de repouso, ou se tiver um motor de template, pode renderizar o template no servidor e depois enviar isso como um ficheiro HTML para o cliente.
Artigos semelhantes
- 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
- É possível criar aplicações 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?