ファイル構成
├── css │ └── css/style.css ├── img │ └── img/gallery ├── includes │ ├── includes/dbh.inc.php │ └── includes/gallery-upload.inc.php └── index.php
テーブル作成
dbh.inc.php データーベース接続ファイル
スタイルシート style.css
index.php
includes/gallery-upload.inc.php
PHOTOアップロードフォームに以下のバリデーション処理追加
①ファイル形式がjpgかjpegまたはpngかを判定
②ファイルサイズが2Mバイト以下であるか
③ファイルが破損エラーしているかを判定