Please enable JavaScript.
Coggle requires JavaScript to display documents.
SIS - Coggle Diagram
SIS
-
PHP
CRUD
-
Read from DB
- Client Request page with DB info from Server.
- Server Responds with HTML and runs PHP script.
- PHP sends query to DB to retrieve data.
- HTML Input (e.g. form input, innerText...)
- $_GET method instantiates input data into PHP variable.
- That variable is inserted into another PHP variable that includes the query statement that will be sent to the DB.
- MAriaDB processes query and sends data back to PHP script.
-
- Server finally presents whole page in HTML to client.
-
-
-
-