News

Todoアプリケーション 概要 このプロジェクトは、PHP、MySQL、Nginx、Docker を使用して構築されたシンプルなTodoリストWebアプリケーションです。
This project demonstrates a simple PHP + MySQL web application running in Docker containers. It includes a registration form that saves user data to a MySQL database and displays all registered users.
If PHP's MySQL library supports it, you should be using bound variables. Gets rid of the SQL-injection worries.
Prepared statements avoid the process of compiling, parsing and running a stored procedure or inline SQL statement in your code. The PHP prepared statement function speeds up the application ...