August 2016
Intermediate to advanced
610 pages
11h 55m
English
For test purposes, along with the source code for the book, we've provided an SQL file with sample data at https://github.com/dbierer/php7cookbook. The name of the database used in the recipes for this book is php7cookbook.
php7cookbook. Also assign rights to the new database to a user called cook with the password book. The following table summarizes these settings:|
Item |
Notes |
|---|---|
|
Database name |
|
|
Database user |
|
|
Database user password |
|
CREATE DATABASE IF NOT EXISTS dbname DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE USER 'user'@'%' IDENTIFIED WITH mysql_native_password; SET PASSWORD FOR ...
Read now
Unlock full access