├── .gitignore
├── hw
├── Jun-6-2022
│ └── 13_form_abuzar
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── .DS_Store
│ │ ├── package-lock.json
│ │ └── abuzar.php
├── may-16-2022
│ └── 13_form_abuzar
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── .DS_Store
│ │ ├── package-lock.json
│ │ └── abuzar.php
├── mar-23-2022
│ ├── MATH PHP TURZO
│ │ ├── answer.txt
│ │ └── index.php
│ └── function.php
├── mar-21-2022
│ ├── TURZO PHP Assignment 3
│ │ ├── LEAP YEAR
│ │ │ ├── answer.txt
│ │ │ └── index.php
│ │ └── NOT LEAP YEARR
│ │ │ ├── answer.txt
│ │ │ └── index.php
│ ├── PHP Amit
│ │ └── leap year.php
│ └── LeapYear(abuzar).php
├── mar-30-2022
│ ├── SHOW DATA FOREACH LOOP
│ │ ├── answer.txt
│ │ └── data.php
│ └── foreach_abuzar
│ │ └── foreach.php
├── mar-16-2022
│ ├── turzo
│ │ ├── prog.php
│ │ ├── variables answer.txt
│ │ └── index.php
│ ├── Text PHP Amit
│ │ └── syntex.php
│ ├── Saif_assin-2
│ │ └── variable.php
│ └── abuzar.php
├── apr-11-2022
│ ├── hw_abuzar
│ │ ├── .DS_Store
│ │ ├── one.php
│ │ └── two.php
│ ├── PHP-Amit
│ │ ├── myheader1.php
│ │ └── myheader2.php
│ └── BUTTON REDIRECT
│ │ └── index.php
├── Apr-6-2022
│ ├── PHP-Amit
│ │ ├── syntex.php
│ │ └── array.php
│ └── hw-7
│ │ └── AssociativeArray.php
├── mar-14-2022
│ ├── PHP Amit
│ │ ├── syntex.php
│ │ └── variable.php
│ ├── Saif php
│ │ ├── l1-syntex.php
│ │ ├── l3-php-comment.php
│ │ └── l2-echo_print.php
│ └── phphw-01
│ │ ├── db.php
│ │ └── chat.php
├── apr-20-2022
│ ├── PHP-Amit
│ │ └── date.php
│ └── hw-10
│ │ └── next7dayswithLoop.php
├── apr-18-2022
│ ├── PHP IN HTML HTML IN PHP
│ │ ├── index2.php
│ │ └── index.php
│ ├── PHP-Amit
│ │ └── html undercondition.php
│ └── hw_abuzar
│ │ └── htmlUnderPhp.php
├── apr-25-2022
│ ├── explode & implode.php
│ └── hw_abuzar.php
├── apr-27-2022
│ ├── PHP-Amit
│ │ └── referance-variable.php
│ └── hw_abuzar
│ │ └── abuzar.php
└── mar-28-2022
│ ├── Button function Turzo
│ └── index.php
│ └── namta_abuzar
│ └── namta.php
├── package.json
├── imageUpload
├── download.png
└── t8s04a628259c1c7cebpm040345May162022Mondaydownload.png
├── l34Crud
├── images
│ ├── profile.png
│ └── i4eW7Z62b328fd98b46pm043645June222022Wednesday1540267867863.jpg
├── db.php
├── logout.php
├── footer.php
├── deleteUser.js
├── index.php
├── header.php
├── login.php
├── changePass.php
├── addUser.php
├── updateProfile.php
├── sideBar.php
├── userlist.php
└── formSubmit.php
├── l1-syntext.php
├── l29.session-p2.php
├── l13.header1.php
├── l2-echo-print.php
├── l29.session-p1.php
├── l3.how2Comment.php
├── l31.php-block.php
├── l17.exploade&impload.php
├── l18.reference-variable.php
├── l24.oopInheritenceClass.php
├── l16.const.php
├── l28.oopPrivateConstruct.php
├── l19.simple-syntax.php
├── l26.oopConstructDestructFunc.php
├── l4.veriable.php
├── l27.oopConstantAndStaticPro.php
├── l11.superGlobal.php
├── l13.header2.php
├── l23.oopClass.php
├── l5.datatype.php
├── l10.get.php
├── l9.loop.php
├── l32-mySQLQuries.txt
├── l15.date.php
├── l8.function.php
├── l6.operators.php
├── l22.fileupload.php
├── l14.htmlUnderCondition.php
├── l25.oopAccessModifire.php
├── l33-ConnectWithMySQL.php
├── l7.condition.php
├── l30.session-p3.php
├── l20.formValidation.php
├── l12.array.php
└── l21.formValidation.php
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/hw/Jun-6-2022/13_form_abuzar/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/hw/may-16-2022/13_form_abuzar/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/hw/mar-23-2022/MATH PHP TURZO/answer.txt:
--------------------------------------------------------------------------------
1 | 100
2 | 1000
3 |
--------------------------------------------------------------------------------
/hw/mar-21-2022/TURZO PHP Assignment 3/LEAP YEAR/answer.txt:
--------------------------------------------------------------------------------
1 | this is a leap year
2 |
3 |
--------------------------------------------------------------------------------
/hw/mar-30-2022/SHOW DATA FOREACH LOOP/answer.txt:
--------------------------------------------------------------------------------
1 | cities are 4
2 |
3 | person data 5
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "bootstrap": "^5.1.3"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/hw/mar-21-2022/TURZO PHP Assignment 3/NOT LEAP YEARR/answer.txt:
--------------------------------------------------------------------------------
1 | this is not a leap year
2 |
--------------------------------------------------------------------------------
/hw/mar-16-2022/turzo/prog.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/imageUpload/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/imageUpload/download.png
--------------------------------------------------------------------------------
/l34Crud/images/profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/l34Crud/images/profile.png
--------------------------------------------------------------------------------
/hw/Jun-6-2022/13_form_abuzar/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "bootstrap": "^5.1.3"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/hw/may-16-2022/13_form_abuzar/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "bootstrap": "^5.1.3"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/l34Crud/db.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/l34Crud/logout.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hw/apr-11-2022/hw_abuzar/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/hw/apr-11-2022/hw_abuzar/.DS_Store
--------------------------------------------------------------------------------
/hw/mar-16-2022/turzo/variables answer.txt:
--------------------------------------------------------------------------------
1 | string
2 | string
3 | boolean
4 | string
5 | NULL
6 | string
7 | integer
8 | double
--------------------------------------------------------------------------------
/hw/Jun-6-2022/13_form_abuzar/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/hw/Jun-6-2022/13_form_abuzar/.DS_Store
--------------------------------------------------------------------------------
/hw/Apr-6-2022/PHP-Amit/syntex.php:
--------------------------------------------------------------------------------
1 | ";
4 | echo "Dhaka is the capital of bangladesh
";
5 | ?>
--------------------------------------------------------------------------------
/hw/may-16-2022/13_form_abuzar/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/hw/may-16-2022/13_form_abuzar/.DS_Store
--------------------------------------------------------------------------------
/l1-syntext.php:
--------------------------------------------------------------------------------
1 | ";
3 | echo "ho ho ho"
4 | ?>
5 | this is a code from outside php
--------------------------------------------------------------------------------
/l29.session-p2.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hw/mar-14-2022/PHP Amit/syntex.php:
--------------------------------------------------------------------------------
1 | ";
4 | echo "Dhaka is the capital of Bangladesh."
5 |
6 | ?>
7 |
8 |
--------------------------------------------------------------------------------
/hw/mar-16-2022/Text PHP Amit/syntex.php:
--------------------------------------------------------------------------------
1 | ";
4 | echo "Dhaka is the capital of Bangladesh."
5 |
6 | ?>
7 |
8 |
--------------------------------------------------------------------------------
/hw/mar-14-2022/Saif php/l1-syntex.php:
--------------------------------------------------------------------------------
1 | ";
3 | echo "Hello Bangladesh
"
4 | ?>
5 | This is code from outside php
--------------------------------------------------------------------------------
/imageUpload/t8s04a628259c1c7cebpm040345May162022Mondaydownload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/imageUpload/t8s04a628259c1c7cebpm040345May162022Mondaydownload.png
--------------------------------------------------------------------------------
/hw/mar-14-2022/Saif php/l3-php-comment.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/l34Crud/images/i4eW7Z62b328fd98b46pm043645June222022Wednesday1540267867863.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asif-daffodil/b75PHP/main/l34Crud/images/i4eW7Z62b328fd98b46pm043645June222022Wednesday1540267867863.jpg
--------------------------------------------------------------------------------
/hw/apr-11-2022/PHP-Amit/myheader1.php:
--------------------------------------------------------------------------------
1 |
6 |