├── Ch 01 └── my_project │ └── index.php ├── Ch 02 ├── kickstart │ ├── getdata.php │ ├── insert.php │ └── setup.php └── my_project │ ├── conditionals.php │ ├── foreach.php │ ├── multi_array.php │ ├── mysql.php │ └── op_experiments.php ├── Ch 03 ├── kickstart │ ├── admin │ │ ├── comments.php │ │ ├── index.php │ │ └── posts.php │ ├── frontend │ │ ├── comments.php │ │ └── posts.php │ ├── includes │ │ └── database.php │ ├── index.php │ └── login.php ├── my_project │ ├── conditionals.php │ ├── dog.php │ ├── fido.php │ ├── fido2.php │ ├── fido3.php │ ├── foreach.php │ ├── index.php │ ├── multi_array.php │ ├── mysql.php │ ├── op_experiments.php │ ├── owner.php │ ├── owner2.php │ ├── owner3.php │ ├── rex.php │ └── storage.php └── updated │ └── kickstart │ ├── admin │ ├── comments.php │ └── posts.php │ ├── includes │ ├── admin.php │ ├── database.php │ ├── login.php │ └── posts.php │ ├── index.php │ └── login.php ├── Ch 04 ├── experiments │ ├── collect.php │ ├── form.php │ ├── list-posts.php │ ├── posts.php │ └── single-post.php ├── kickstart │ ├── admin │ │ ├── comments.php │ │ ├── index.php │ │ ├── posts.php │ │ └── templates │ │ │ ├── _inc │ │ │ ├── footer.php │ │ │ └── header.php │ │ │ ├── loginform.php │ │ │ ├── manageposts.php │ │ │ └── newpost.php │ ├── frontend │ │ ├── comments.php │ │ ├── posts.php │ │ └── templates │ │ │ ├── list-posts.php │ │ │ ├── loginform.php │ │ │ └── view-post.php │ ├── includes │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── database.php │ │ ├── imgs │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── js │ │ │ ├── libs │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ └── script.js │ │ └── temps │ │ │ ├── footer.php │ │ │ └── header.php │ ├── index.php │ └── login.php └── updated │ └── kickstart │ ├── admin │ ├── comments.php │ ├── posts.php │ └── templates │ │ ├── _inc │ │ ├── footer.php │ │ └── header.php │ │ ├── loginform.php │ │ ├── manageposts.php │ │ └── newpost.php │ ├── frontend │ └── templates │ │ ├── list-posts.php │ │ └── view-post.php │ ├── includes │ ├── admin.php │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── database.php │ ├── imgs │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── libs │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── script.js │ ├── login.php │ ├── posts.php │ └── temps │ │ ├── footer.php │ │ └── header.php │ ├── index.php │ └── login.php └── Ch 05 ├── kickstart ├── admin │ ├── comments.php │ ├── index.php │ ├── posts.php │ └── templates │ │ ├── _inc │ │ ├── footer.php │ │ └── header.php │ │ ├── loginform.php │ │ ├── managecomments.php │ │ ├── manageposts.php │ │ └── newpost.php ├── frontend │ ├── comments.php │ ├── posts.php │ └── templates │ │ ├── list-posts.php │ │ └── view-post.php ├── includes │ ├── Markdown.php │ ├── css │ │ ├── Markdown.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── database.php │ ├── img │ │ ├── Markdown.Editor.Icons.fw.png │ │ ├── Markdown.Editor.Icons.png │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── libs │ │ │ ├── Markdown.Converter.js │ │ │ ├── Markdown.Editor.js │ │ │ ├── Markdown.Sanitizer.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── script.admin.js │ │ └── script.js │ └── temps │ │ ├── footer.php │ │ └── header.php ├── index.php └── login.php ├── my_project └── storage.php └── updated └── kickstart ├── admin ├── comments.php ├── posts.php └── templates │ ├── _inc │ ├── footer.php │ └── header.php │ ├── loginform.php │ ├── managecomments.php │ ├── manageposts.php │ └── newpost.php ├── frontend └── templates │ ├── list-posts.php │ └── view-post.php ├── includes ├── Markdown.php ├── admin.php ├── css │ ├── Markdown.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── database.php ├── img │ ├── Markdown.Editor.Icons.fw.png │ ├── Markdown.Editor.Icons.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── js │ ├── libs │ │ ├── Markdown.Converter.js │ │ ├── Markdown.Editor.js │ │ ├── Markdown.Sanitizer.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── script.admin.js │ └── script.js ├── login.php ├── posts.php └── temps │ ├── footer.php │ └── header.php ├── index.php └── login.php /Ch 01/my_project/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ch 02/kickstart/getdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/kickstart/getdata.php -------------------------------------------------------------------------------- /Ch 02/kickstart/insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/kickstart/insert.php -------------------------------------------------------------------------------- /Ch 02/kickstart/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/kickstart/setup.php -------------------------------------------------------------------------------- /Ch 02/my_project/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/my_project/conditionals.php -------------------------------------------------------------------------------- /Ch 02/my_project/foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/my_project/foreach.php -------------------------------------------------------------------------------- /Ch 02/my_project/multi_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/my_project/multi_array.php -------------------------------------------------------------------------------- /Ch 02/my_project/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/my_project/mysql.php -------------------------------------------------------------------------------- /Ch 02/my_project/op_experiments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 02/my_project/op_experiments.php -------------------------------------------------------------------------------- /Ch 03/kickstart/admin/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/admin/comments.php -------------------------------------------------------------------------------- /Ch 03/kickstart/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/admin/index.php -------------------------------------------------------------------------------- /Ch 03/kickstart/admin/posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/admin/posts.php -------------------------------------------------------------------------------- /Ch 03/kickstart/frontend/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/frontend/comments.php -------------------------------------------------------------------------------- /Ch 03/kickstart/frontend/posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/frontend/posts.php -------------------------------------------------------------------------------- /Ch 03/kickstart/includes/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/includes/database.php -------------------------------------------------------------------------------- /Ch 03/kickstart/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/index.php -------------------------------------------------------------------------------- /Ch 03/kickstart/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/kickstart/login.php -------------------------------------------------------------------------------- /Ch 03/my_project/conditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/conditionals.php -------------------------------------------------------------------------------- /Ch 03/my_project/dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/dog.php -------------------------------------------------------------------------------- /Ch 03/my_project/fido.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/fido.php -------------------------------------------------------------------------------- /Ch 03/my_project/fido2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/fido2.php -------------------------------------------------------------------------------- /Ch 03/my_project/fido3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/fido3.php -------------------------------------------------------------------------------- /Ch 03/my_project/foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/foreach.php -------------------------------------------------------------------------------- /Ch 03/my_project/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ch 03/my_project/multi_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/multi_array.php -------------------------------------------------------------------------------- /Ch 03/my_project/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/mysql.php -------------------------------------------------------------------------------- /Ch 03/my_project/op_experiments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/op_experiments.php -------------------------------------------------------------------------------- /Ch 03/my_project/owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/owner.php -------------------------------------------------------------------------------- /Ch 03/my_project/owner2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/owner2.php -------------------------------------------------------------------------------- /Ch 03/my_project/owner3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/owner3.php -------------------------------------------------------------------------------- /Ch 03/my_project/rex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/rex.php -------------------------------------------------------------------------------- /Ch 03/my_project/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/JSPHP1/HEAD/Ch 03/my_project/storage.php -------------------------------------------------------------------------------- /Ch 03/updated/kickstart/admin/comments.php: -------------------------------------------------------------------------------- 1 |