├── .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:
--------------------------------------------------------------------------------
1 | .idea
2 | vendor
3 | *.jpg
4 | *.jpeg
5 | *.png
6 | *.webp
--------------------------------------------------------------------------------
/00_syntax.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
7 |
8 | Document
9 |
10 |
11 | Hello World
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01_comments.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
7 |
8 | Document
9 |
10 |
11 |
15 | About us
16 |
18 |
19 |
--------------------------------------------------------------------------------
/10_include_require/01_website_skeleton/index.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
7 |
8 | Document
9 |
10 |
11 |
15 | Georgia, Tbilisi 5℃
16 | Welcome to my cool website
17 |
20 |
21 |
--------------------------------------------------------------------------------
/10_include_require/02_functions/index.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
7 |
8 | Document
9 |
10 |
11 | My Awesome page>
12 |
13 |
14 |
--------------------------------------------------------------------------------
/16_sessions_cookies/02_cookies.php:
--------------------------------------------------------------------------------
1 |