Skip to content

arinc0/php-study

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

パーフェクトPHPを勉強する為の環境

DBの設定

rootユーザーでログイン

# pass は root
mysql -h127.0.0.1 -uroot -p

初期ユーザーにDB作成権限を付与

grant all privileges on *.* to 'docker'@'%';

権限を付与したら下記のようにデータベース作成、テーブル作成

# db
mysql -h127.0.0.1 -udocker -p < sql/create_online_bbs_db.sql
# table
mysql -h127.0.0.1 -udocker -p online_bbs  < sql/create_posts_table.sql 

ひとこと掲示板

http://study.localhost/online_bbs/bbs.php

mysql_connect(), mysql_select_db(), mysql_real_escape_string(), mysql_query(), mysql_fetch_assoc(), mysql_num_rows()はPHP7以上では削除されている為、代替メソッドを使用。

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published