├── 9781484217290.jpg ├── Example Code Files ├── chapter1 │ └── p1helloworld.php ├── chapter2 │ ├── e21Ajax_Example_JavaScript.js │ ├── e22helloworldajax.html │ ├── e23ajaxdemo.css │ ├── e23mobilehelloworldajax.html │ ├── e24ajaxdemomobile.css │ ├── e25dynamichtml.php │ └── e26callmyself.php ├── chapter3 │ ├── e310dog.php │ ├── e311lab.php │ ├── e312dog.php │ ├── e313lab.php │ ├── e31php.ini │ ├── e32dog.php │ ├── e33dog.php │ ├── e34dog.php │ ├── e35lab.php │ ├── e36dog.php │ ├── e37lab.php │ ├── e38lab.php │ └── e39dog.php ├── chapter4 │ ├── e40dog.php │ ├── e40get_breeds.js │ ├── e410dog_container.php │ ├── e411get_breeds.php │ ├── e412dog_interface.php │ ├── e414lab.html │ ├── e415get_breeds.js │ ├── e416dog.php │ ├── e41lab.html │ ├── e42validator.js │ ├── e43and44lab.php │ ├── e45breeds.xml │ ├── e45get_breeds.php │ ├── e46lab.html │ ├── e46validator.js │ ├── e47and48dog.php │ ├── e47lab.php │ └── e49dog_applications.xml ├── chapter5 │ ├── Errors.log │ ├── e51testerror.php │ ├── e52handleerror.php │ ├── e53dog.php │ ├── e54get_breeds.php │ ├── e55dog_container.php │ ├── e56dog_interface.php │ ├── e57dog_interface.php │ ├── e57lab.html │ ├── e58readerrorlog.php │ ├── e5breeds.xml │ ├── e5dog_applications.xml │ ├── e5get_breeds.js │ ├── e5lab.html │ └── e5validator.js ├── chapter6 │ ├── 07162015070620change.log │ ├── 07162015100850change.log │ ├── e54get_breeds.php │ ├── e5breeds.xml │ ├── e5get_breeds.js │ ├── e5validator.js │ ├── e61dog_applications.xml │ ├── e61dog_data.php │ ├── e61dog_data.xml │ ├── e62testdata.php │ ├── e63dog_data.php │ ├── e64displaychangelog.php │ ├── e65dog.php │ ├── e65dog_applications.xml │ ├── e65dog_container.php │ ├── e65dog_data.php │ ├── e65dog_interface.php │ └── e65lab.html ├── chapter7 │ ├── dog_data.xml │ ├── e54get_breeds.php │ ├── e5breeds.xml │ ├── e5get_breeds.js │ ├── e5validator.js │ ├── e65dog.php │ ├── e65dog_container.php │ ├── e65dog_data.php │ ├── e65dog_interface.php │ ├── e71lab.php │ ├── e72login.php │ ├── e73registration.php │ ├── e74lab.php │ ├── e74login.php │ ├── e74registration.php │ ├── e75changepassword.php │ ├── e7dog_applications.xml │ ├── readmechapter7.txt │ └── uidpass.xml └── chapter8 │ ├── Errors.log │ ├── brody.jpg │ ├── dog_data.xml │ ├── e23ajaxdemo.css │ ├── e54get_breeds.php │ ├── e5breeds.xml │ ├── e5validator.js │ ├── e65dog_container.php │ ├── e65dog_data.php │ ├── e73registration.php │ ├── e74login.php │ ├── e75changepassword.php │ ├── e7dog_applications.xml │ ├── e81getlists.js │ ├── e82lab.php │ ├── e83dog_interface.php │ ├── e84dog.php │ ├── e85lab.php │ ├── e86readerrorlog.php │ ├── e8ajaxcall.js │ ├── uidpass.xml │ └── user.log ├── LICENSE.txt ├── README.md └── contributing.md /9781484217290.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/9781484217290.jpg -------------------------------------------------------------------------------- /Example Code Files/chapter1/p1helloworld.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example Code Files/chapter2/e21Ajax_Example_JavaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e21Ajax_Example_JavaScript.js -------------------------------------------------------------------------------- /Example Code Files/chapter2/e22helloworldajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e22helloworldajax.html -------------------------------------------------------------------------------- /Example Code Files/chapter2/e23ajaxdemo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e23ajaxdemo.css -------------------------------------------------------------------------------- /Example Code Files/chapter2/e23mobilehelloworldajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e23mobilehelloworldajax.html -------------------------------------------------------------------------------- /Example Code Files/chapter2/e24ajaxdemomobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e24ajaxdemomobile.css -------------------------------------------------------------------------------- /Example Code Files/chapter2/e25dynamichtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e25dynamichtml.php -------------------------------------------------------------------------------- /Example Code Files/chapter2/e26callmyself.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter2/e26callmyself.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e310dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e310dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e311lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e311lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e312dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e312dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e313lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e313lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e31php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e31php.ini -------------------------------------------------------------------------------- /Example Code Files/chapter3/e32dog.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Example Code Files/chapter3/e33dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e33dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e34dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e34dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e35lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e35lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e36dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e36dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e37lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e37lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e38lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e38lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter3/e39dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter3/e39dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e40dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e40dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e40get_breeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e40get_breeds.js -------------------------------------------------------------------------------- /Example Code Files/chapter4/e410dog_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e410dog_container.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e411get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e411get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e412dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e412dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e414lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e414lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter4/e415get_breeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e415get_breeds.js -------------------------------------------------------------------------------- /Example Code Files/chapter4/e416dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e416dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e41lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e41lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter4/e42validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e42validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter4/e43and44lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e43and44lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e45breeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e45breeds.xml -------------------------------------------------------------------------------- /Example Code Files/chapter4/e45get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e45get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e46lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e46lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter4/e46validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e46validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter4/e47and48dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e47and48dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e47lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e47lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter4/e49dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter4/e49dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter5/Errors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/Errors.log -------------------------------------------------------------------------------- /Example Code Files/chapter5/e51testerror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e51testerror.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e52handleerror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e52handleerror.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e53dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e53dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e54get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e54get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e55dog_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e55dog_container.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e56dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e56dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e57dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e57dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e57lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e57lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter5/e58readerrorlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e58readerrorlog.php -------------------------------------------------------------------------------- /Example Code Files/chapter5/e5breeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e5breeds.xml -------------------------------------------------------------------------------- /Example Code Files/chapter5/e5dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e5dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter5/e5get_breeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e5get_breeds.js -------------------------------------------------------------------------------- /Example Code Files/chapter5/e5lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e5lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter5/e5validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter5/e5validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter6/07162015070620change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/07162015070620change.log -------------------------------------------------------------------------------- /Example Code Files/chapter6/07162015100850change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/07162015100850change.log -------------------------------------------------------------------------------- /Example Code Files/chapter6/e54get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e54get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e5breeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e5breeds.xml -------------------------------------------------------------------------------- /Example Code Files/chapter6/e5get_breeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e5get_breeds.js -------------------------------------------------------------------------------- /Example Code Files/chapter6/e5validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e5validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter6/e61dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e61dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter6/e61dog_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e61dog_data.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e61dog_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e61dog_data.xml -------------------------------------------------------------------------------- /Example Code Files/chapter6/e62testdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e62testdata.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e63dog_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e63dog_data.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e64displaychangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e64displaychangelog.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65dog_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65dog_container.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65dog_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65dog_data.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter6/e65lab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter6/e65lab.html -------------------------------------------------------------------------------- /Example Code Files/chapter7/dog_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/dog_data.xml -------------------------------------------------------------------------------- /Example Code Files/chapter7/e54get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e54get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e5breeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e5breeds.xml -------------------------------------------------------------------------------- /Example Code Files/chapter7/e5get_breeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e5get_breeds.js -------------------------------------------------------------------------------- /Example Code Files/chapter7/e5validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e5validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter7/e65dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e65dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e65dog_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e65dog_container.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e65dog_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e65dog_data.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e65dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e65dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e71lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e71lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e72login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e72login.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e73registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e73registration.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e74lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e74lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e74login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e74login.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e74registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e74registration.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e75changepassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e75changepassword.php -------------------------------------------------------------------------------- /Example Code Files/chapter7/e7dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/e7dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter7/readmechapter7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/readmechapter7.txt -------------------------------------------------------------------------------- /Example Code Files/chapter7/uidpass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter7/uidpass.xml -------------------------------------------------------------------------------- /Example Code Files/chapter8/Errors.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/Errors.log -------------------------------------------------------------------------------- /Example Code Files/chapter8/brody.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/brody.jpg -------------------------------------------------------------------------------- /Example Code Files/chapter8/dog_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/dog_data.xml -------------------------------------------------------------------------------- /Example Code Files/chapter8/e23ajaxdemo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e23ajaxdemo.css -------------------------------------------------------------------------------- /Example Code Files/chapter8/e54get_breeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e54get_breeds.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e5breeds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e5breeds.xml -------------------------------------------------------------------------------- /Example Code Files/chapter8/e5validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e5validator.js -------------------------------------------------------------------------------- /Example Code Files/chapter8/e65dog_container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e65dog_container.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e65dog_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e65dog_data.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e73registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e73registration.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e74login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e74login.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e75changepassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e75changepassword.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e7dog_applications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e7dog_applications.xml -------------------------------------------------------------------------------- /Example Code Files/chapter8/e81getlists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e81getlists.js -------------------------------------------------------------------------------- /Example Code Files/chapter8/e82lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e82lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e83dog_interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e83dog_interface.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e84dog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e84dog.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e85lab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e85lab.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e86readerrorlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e86readerrorlog.php -------------------------------------------------------------------------------- /Example Code Files/chapter8/e8ajaxcall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/e8ajaxcall.js -------------------------------------------------------------------------------- /Example Code Files/chapter8/uidpass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/uidpass.xml -------------------------------------------------------------------------------- /Example Code Files/chapter8/user.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/Example Code Files/chapter8/user.log -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-php-7/HEAD/contributing.md --------------------------------------------------------------------------------