├── .gitmodules ├── assets ├── .DS_Store ├── css │ └── style.css └── test │ └── r1.php ├── cookie ├── cookie.php ├── my │ ├── cookie.php │ └── test │ │ └── cookie.php └── your │ ├── cookie.php │ └── test │ └── cookie.php ├── curl ├── .DS_Store ├── c1.php ├── c2.php ├── c3.php └── hello.php ├── database └── d1.php ├── date-and-time ├── d1.php ├── d2.php ├── d3.php ├── d4.php ├── d5.php └── d6.php ├── design-patterns ├── abstract-factory-more.php ├── abstract-factory.php ├── adapter.php ├── decorator.php ├── facade.php ├── factory.php ├── singleton.php ├── singleton02.php ├── strategy.php └── tempCodeRunnerFile.php ├── error ├── e1.php ├── e2.php ├── e3.php ├── e4.php ├── e5.php └── e6.php ├── exceptions ├── e1.php ├── e2.php └── e3.php ├── files ├── Screen Shot 2018-10-23 at 7.02.33 PM.png ├── Screen Shot 2018-11-06 at 1.11.57 PM.png ├── Screen Shot 2018-11-06 at 12.59.33 PM.png └── image.png ├── filesystem ├── .DS_Store ├── f1.php ├── f2.php ├── f3.php ├── f4.php ├── f5.php ├── f6.php ├── f7.php ├── f8.php └── f9.php ├── form.html ├── form.php ├── form2-functions.php ├── form2.php ├── form3.php ├── functions.php ├── glob.php ├── index.php ├── info.php ├── mailing ├── .DS_Store ├── m1.php ├── m2.php ├── m3.php ├── phpmailer │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php └── sick-poem.pdf ├── oop ├── advanced │ ├── a1.php │ ├── a2.php │ ├── a3.php │ ├── a4.php │ ├── a5.php │ ├── a6.php │ ├── a7.php │ ├── a8.php │ ├── a9.php │ ├── autoloading │ │ ├── bike.php │ │ ├── main.php │ │ ├── planet.php │ │ ├── planets │ │ │ └── mars.php │ │ └── spaceship.php │ └── solid │ │ ├── di.php │ │ ├── is.php │ │ ├── lsp.php │ │ ├── lsp2.php │ │ ├── oc.php │ │ ├── s.php │ │ └── s2.php ├── foundation │ ├── 012.php │ ├── 014.php │ ├── o1.php │ ├── o10.php │ ├── o11.php │ ├── o13.php │ ├── o15.php │ ├── o16.php │ ├── o17.php │ ├── o18.php │ ├── o19.php │ ├── o2.php │ ├── o21.php │ ├── o22.php │ ├── o23.php │ ├── o3.php │ ├── o4.php │ ├── o5.php │ ├── o7.php │ ├── o8.php │ ├── o9.php │ ├── oop20.php │ └── test.php ├── ns │ ├── al.tar.gz │ ├── autoloading │ │ ├── autoloader.php │ │ ├── filesystem │ │ │ ├── files │ │ │ │ ├── contracts │ │ │ │ │ └── imagecontract.php │ │ │ │ └── images │ │ │ │ │ └── jpeg.php │ │ │ └── scanner.php │ │ ├── mail │ │ │ └── mailer.php │ │ ├── main.php │ │ └── tempCodeRunnerFile.php │ ├── c1.php │ ├── c2.php │ ├── earth.php │ ├── main.php │ ├── n1.php │ └── planet.php └── traits │ ├── t1.php │ ├── t2.php │ ├── t3.php │ └── t4.php ├── session ├── auth.php ├── session1.php └── session2.php ├── sessiontest ├── sd.php ├── session.php ├── t1 │ ├── sd.php │ └── session.php └── t2 │ └── session.php ├── strings ├── array │ ├── a12.php │ ├── a13.php │ ├── a14.php │ ├── a15.php │ └── temp.php ├── s01.php ├── s02.php ├── s03.php ├── s04.php ├── s05.php └── s06.php ├── tasks ├── config.php ├── data.php ├── index.php └── tasks.php ├── upload.php └── voc ├── assets ├── css │ └── style.css └── js │ └── script.js ├── config.php ├── functions.php ├── index.php ├── logout.php ├── tasks.php └── words.php /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/PHPCourse/HEAD/.gitmodules -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/PHPCourse/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/PHPCourse/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/test/r1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/PHPCourse/HEAD/assets/test/r1.php -------------------------------------------------------------------------------- /cookie/cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/PHPCourse/HEAD/cookie/cookie.php -------------------------------------------------------------------------------- /cookie/my/cookie.php: -------------------------------------------------------------------------------- 1 |