QNA > H > How To Make A To-Do-List Using Php And Connecting It Using Mysql

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.

  1. = ‘mysql:dbname=to_do_example;host=127.0.0.1’; 
  2. = ‘root’; 
  3. = ‘password; 
  4.  
  5. = new PDO(, , ); 
  6.  
  7. = ->query(‘SELECT * FROM TODOS’); 
  8. ->execute(); 
  9. = ->fetchAll(); 
  10.  
  11. foreach( as ){ 
  12. //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.

Di Rimas

Game of Thrones è davvero così bello? Perché piace così tanto alla critica e al pubblico? :: Si può fare il jailbreak di una Xbox One S?
Link utili