├── 10 ├── calculator1.php ├── calculator2.php ├── menus.php ├── sticky1.php └── sticky2.php ├── 11 ├── add_quote.php ├── list_dir.php ├── login.php ├── register.php ├── script_11_02 │ └── add_quote.php ├── upload_file.php ├── users.txt └── view_quote.php ├── 12 ├── add_entry.php ├── create_table.php ├── delete_entry.php ├── edit_entry.php ├── mysqli_connect.php ├── script_12_02 │ └── mysqli_connect.php ├── script_12_05 │ └── add_entry.php └── view_entries.php ├── 13 ├── htdocs │ ├── add_quote.php │ ├── css │ │ └── style.css │ ├── delete_quote.php │ ├── edit_quote.php │ ├── includes │ │ └── functions.php │ ├── index.php │ ├── login.php │ ├── logout.php │ ├── templates │ │ ├── footer.html │ │ └── header.html │ └── view_quotes.php └── mysqli_connect.php ├── 01 ├── hello1.php ├── hello2.php ├── hello3.php ├── phpinfo.php └── welcome.html ├── 02 ├── predefined.php ├── quotes.php ├── script_02_02.php └── variables.php ├── 03 ├── feedback.html ├── handle_form.php ├── hello.html ├── hello.php ├── script_03_02 │ └── feedback.html ├── script_03_04 │ └── handle_form.php └── script_03_05 │ └── handle_form.php ├── 04 ├── calculator.html ├── handle_calc.php ├── random.php ├── script_04_03 │ └── handle_calc.php ├── script_04_04 │ └── handle_calc.php └── script_04_05 │ └── handle_calc.php ├── 05 ├── handle_post.php ├── posting.html ├── script_05_03 │ └── handle_post.php ├── script_05_04 │ └── handle_post.php ├── script_05_05 │ └── handle_post.php ├── script_05_06 │ └── handle_post.php ├── script_05_07 │ └── handle_post.php └── thanks.php ├── 06 ├── handle_reg.php ├── register.html ├── register.php ├── script_06_03 │ └── handle_reg.php ├── script_06_04 │ └── handle_reg.php ├── script_06_05 │ └── handle_reg.php ├── script_06_06 │ └── handle_reg.php ├── script_06_07 │ └── handle_reg.php └── script_06_08 │ └── handle_reg.php ├── 07 ├── books.php ├── event.html ├── event.php ├── list.html ├── list.php ├── sort.php ├── soups1.php ├── soups2.php └── soups3.php ├── 08 ├── books.php ├── css │ ├── concise.min.css │ └── masthead.css ├── index.php ├── login.php ├── register.php ├── script_08_10 │ └── register.php ├── script_08_13 │ └── login.php ├── template.html ├── templates │ ├── footer.html │ ├── header.html │ ├── script_08_06 │ │ └── header.html │ ├── script_08_07 │ │ └── footer.html │ ├── script_08_11 │ │ └── header.html │ └── script_08_12 │ │ └── footer.html └── welcome.php ├── 09 ├── customize.php ├── login.php ├── logout.php ├── reset.php ├── script_09_03 │ └── customize.php ├── script_09_05.txt ├── view_settings.php └── welcome.php ├── README.md └── license.txt /01/hello1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/01/hello1.php -------------------------------------------------------------------------------- /01/hello2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/01/hello2.php -------------------------------------------------------------------------------- /01/hello3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/01/hello3.php -------------------------------------------------------------------------------- /01/phpinfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/01/welcome.html -------------------------------------------------------------------------------- /02/predefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/02/predefined.php -------------------------------------------------------------------------------- /02/quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/02/quotes.php -------------------------------------------------------------------------------- /02/script_02_02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/02/script_02_02.php -------------------------------------------------------------------------------- /02/variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/02/variables.php -------------------------------------------------------------------------------- /03/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/feedback.html -------------------------------------------------------------------------------- /03/handle_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/handle_form.php -------------------------------------------------------------------------------- /03/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/hello.html -------------------------------------------------------------------------------- /03/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/hello.php -------------------------------------------------------------------------------- /03/script_03_02/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/script_03_02/feedback.html -------------------------------------------------------------------------------- /03/script_03_04/handle_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/script_03_04/handle_form.php -------------------------------------------------------------------------------- /03/script_03_05/handle_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/03/script_03_05/handle_form.php -------------------------------------------------------------------------------- /04/calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/calculator.html -------------------------------------------------------------------------------- /04/handle_calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/handle_calc.php -------------------------------------------------------------------------------- /04/random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/random.php -------------------------------------------------------------------------------- /04/script_04_03/handle_calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/script_04_03/handle_calc.php -------------------------------------------------------------------------------- /04/script_04_04/handle_calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/script_04_04/handle_calc.php -------------------------------------------------------------------------------- /04/script_04_05/handle_calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/04/script_04_05/handle_calc.php -------------------------------------------------------------------------------- /05/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/handle_post.php -------------------------------------------------------------------------------- /05/posting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/posting.html -------------------------------------------------------------------------------- /05/script_05_03/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/script_05_03/handle_post.php -------------------------------------------------------------------------------- /05/script_05_04/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/script_05_04/handle_post.php -------------------------------------------------------------------------------- /05/script_05_05/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/script_05_05/handle_post.php -------------------------------------------------------------------------------- /05/script_05_06/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/script_05_06/handle_post.php -------------------------------------------------------------------------------- /05/script_05_07/handle_post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/script_05_07/handle_post.php -------------------------------------------------------------------------------- /05/thanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/05/thanks.php -------------------------------------------------------------------------------- /06/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/handle_reg.php -------------------------------------------------------------------------------- /06/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/register.html -------------------------------------------------------------------------------- /06/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/register.php -------------------------------------------------------------------------------- /06/script_06_03/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_03/handle_reg.php -------------------------------------------------------------------------------- /06/script_06_04/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_04/handle_reg.php -------------------------------------------------------------------------------- /06/script_06_05/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_05/handle_reg.php -------------------------------------------------------------------------------- /06/script_06_06/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_06/handle_reg.php -------------------------------------------------------------------------------- /06/script_06_07/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_07/handle_reg.php -------------------------------------------------------------------------------- /06/script_06_08/handle_reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/06/script_06_08/handle_reg.php -------------------------------------------------------------------------------- /07/books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/books.php -------------------------------------------------------------------------------- /07/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/event.html -------------------------------------------------------------------------------- /07/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/event.php -------------------------------------------------------------------------------- /07/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/list.html -------------------------------------------------------------------------------- /07/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/list.php -------------------------------------------------------------------------------- /07/sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/sort.php -------------------------------------------------------------------------------- /07/soups1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/soups1.php -------------------------------------------------------------------------------- /07/soups2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/soups2.php -------------------------------------------------------------------------------- /07/soups3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/07/soups3.php -------------------------------------------------------------------------------- /08/books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/books.php -------------------------------------------------------------------------------- /08/css/concise.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/css/concise.min.css -------------------------------------------------------------------------------- /08/css/masthead.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/css/masthead.css -------------------------------------------------------------------------------- /08/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/index.php -------------------------------------------------------------------------------- /08/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/login.php -------------------------------------------------------------------------------- /08/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/register.php -------------------------------------------------------------------------------- /08/script_08_10/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/script_08_10/register.php -------------------------------------------------------------------------------- /08/script_08_13/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/script_08_13/login.php -------------------------------------------------------------------------------- /08/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/template.html -------------------------------------------------------------------------------- /08/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/footer.html -------------------------------------------------------------------------------- /08/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/header.html -------------------------------------------------------------------------------- /08/templates/script_08_06/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/script_08_06/header.html -------------------------------------------------------------------------------- /08/templates/script_08_07/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/script_08_07/footer.html -------------------------------------------------------------------------------- /08/templates/script_08_11/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/script_08_11/header.html -------------------------------------------------------------------------------- /08/templates/script_08_12/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/templates/script_08_12/footer.html -------------------------------------------------------------------------------- /08/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/08/welcome.php -------------------------------------------------------------------------------- /09/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/customize.php -------------------------------------------------------------------------------- /09/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/login.php -------------------------------------------------------------------------------- /09/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/logout.php -------------------------------------------------------------------------------- /09/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/reset.php -------------------------------------------------------------------------------- /09/script_09_03/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/script_09_03/customize.php -------------------------------------------------------------------------------- /09/script_09_05.txt: -------------------------------------------------------------------------------- 1 | email|s:14:"me@example.com";loggedin|i:1292883103; -------------------------------------------------------------------------------- /09/view_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/view_settings.php -------------------------------------------------------------------------------- /09/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/09/welcome.php -------------------------------------------------------------------------------- /10/calculator1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/10/calculator1.php -------------------------------------------------------------------------------- /10/calculator2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/10/calculator2.php -------------------------------------------------------------------------------- /10/menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/10/menus.php -------------------------------------------------------------------------------- /10/sticky1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/10/sticky1.php -------------------------------------------------------------------------------- /10/sticky2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/10/sticky2.php -------------------------------------------------------------------------------- /11/add_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/add_quote.php -------------------------------------------------------------------------------- /11/list_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/list_dir.php -------------------------------------------------------------------------------- /11/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/login.php -------------------------------------------------------------------------------- /11/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/register.php -------------------------------------------------------------------------------- /11/script_11_02/add_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/script_11_02/add_quote.php -------------------------------------------------------------------------------- /11/upload_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/upload_file.php -------------------------------------------------------------------------------- /11/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/users.txt -------------------------------------------------------------------------------- /11/view_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/11/view_quote.php -------------------------------------------------------------------------------- /12/add_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/add_entry.php -------------------------------------------------------------------------------- /12/create_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/create_table.php -------------------------------------------------------------------------------- /12/delete_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/delete_entry.php -------------------------------------------------------------------------------- /12/edit_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/edit_entry.php -------------------------------------------------------------------------------- /12/mysqli_connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/mysqli_connect.php -------------------------------------------------------------------------------- /12/script_12_02/mysqli_connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/script_12_02/mysqli_connect.php -------------------------------------------------------------------------------- /12/script_12_05/add_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/script_12_05/add_entry.php -------------------------------------------------------------------------------- /12/view_entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/12/view_entries.php -------------------------------------------------------------------------------- /13/htdocs/add_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/add_quote.php -------------------------------------------------------------------------------- /13/htdocs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/css/style.css -------------------------------------------------------------------------------- /13/htdocs/delete_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/delete_quote.php -------------------------------------------------------------------------------- /13/htdocs/edit_quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/edit_quote.php -------------------------------------------------------------------------------- /13/htdocs/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/includes/functions.php -------------------------------------------------------------------------------- /13/htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/index.php -------------------------------------------------------------------------------- /13/htdocs/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/login.php -------------------------------------------------------------------------------- /13/htdocs/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/logout.php -------------------------------------------------------------------------------- /13/htdocs/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/templates/footer.html -------------------------------------------------------------------------------- /13/htdocs/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/templates/header.html -------------------------------------------------------------------------------- /13/htdocs/view_quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/htdocs/view_quotes.php -------------------------------------------------------------------------------- /13/mysqli_connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/13/mysqli_connect.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryUllman/phpvqs-5ed/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Copyright 2016 Larry Ullman 2 | --------------------------------------------------------------------------------