├── .gitignore ├── 00_syntax.html ├── 01_comments.php ├── 02_variables.php ├── 03_numbers.php ├── 04_strings.php ├── 05_arrays.php ├── 06_conditionals.php ├── 07_loops.php ├── 08_functions.php ├── 09_dates.php ├── 10_include_require ├── 01_website_skeleton │ ├── about.php │ └── index.php └── 02_functions │ └── index.php ├── 11_fs ├── index.php └── lorem.txt ├── 12_oop └── index.php ├── 13_curl └── index.php ├── 14_product_crud └── index.php ├── 15_autoloading └── index.php ├── 16_sessions_cookies ├── 01_page_counter.php └── 02_cookies.php └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodeholic/php-crash-course-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /00_syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodeholic/php-crash-course-2020/HEAD/00_syntax.html -------------------------------------------------------------------------------- /01_comments.php: -------------------------------------------------------------------------------- 1 |