├── b76.sql ├── bac75.sql ├── footer.php ├── header.php ├── hw ├── Mahmudunnabi │ └── Mahmudunnabi │ │ └── leap_year.php └── Md Tazul islam │ └── leapyear │ ├── image │ └── Leap_Year_Algorithm.png │ └── leapyear.php ├── images ├── 8tdEa5C20Au0FA2Su1aBg2a2Dtry160S62ee2b90a4c9261c1df0f81e93304b252e33d_google-search-central-logo.png ├── C82dABt026S0DyFr1uA5S12gt2aa0uEa62ee2b90a6ddddownload.png ├── D0r0128tE0ySatF56S1aCa2B2uug2AdA62ee2b90a4f14364-3642224_clarity-ecommerce-logo-logo-e-commerce-png.png ├── guB082E52Ay0Sad0CtDuA62aF1at1Sr262ee2b90a56cb1540267867863.jpg ├── u2BFAgat25SC0aS0u211yEtA0a28d6rD62ee2b90a70adReact-icon.svg.png └── uD60tg58tu2aA2EAd2C11FaSySrB2a0062ee2b90a62dfblue-1343159_1280.webp ├── l1-echo-print.php ├── l10-function.php ├── l11loop.php ├── l12trycatch.php ├── l13-array.php ├── l14-date.php ├── l15-superGlobal.php ├── l16-getMethod.php ├── l17-form-1.php ├── l18-file-upload.php ├── l19-session-1.php ├── l19-session-2.php ├── l2.variable.php ├── l20-login-system.php ├── l21-revice.php ├── l22-oop-class.php ├── l23-inheritenceClass.php ├── l24-access-modifire.php ├── l25-con-des.php ├── l26.oop-types.php ├── l27-static-oop.php ├── l28-const.oop.php ├── l29-stop-con-obj-oop.php ├── l3.const.php ├── l30.abstract-oop.php ├── l31.interface-oop.php ├── l32-traits-oop.php ├── l33-sql-quries.php ├── l34-connect-with-mysql.php ├── l35-crud.php ├── l4.comment.php ├── l5-datatype.php ├── l6-operators.php ├── l7-math.php ├── l8-string.php ├── l9-condition.php ├── problem.js ├── problem.php └── simplecrud ├── add.php ├── del.php ├── index.php └── up.php /b76.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 5.1.0 3 | -- https://www.phpmyadmin.net/ 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Sep 01, 2022 at 10:19 AM 7 | -- Server version: 10.4.18-MariaDB 8 | -- PHP Version: 8.0.3 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | START TRANSACTION; 12 | SET time_zone = "+00:00"; 13 | 14 | 15 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 16 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 17 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 18 | /*!40101 SET NAMES utf8mb4 */; 19 | 20 | -- 21 | -- Database: `b76` 22 | -- 23 | 24 | -- -------------------------------------------------------- 25 | 26 | -- 27 | -- Table structure for table `students` 28 | -- 29 | 30 | CREATE TABLE `students` ( 31 | `id` int(11) NOT NULL, 32 | `name` char(255) NOT NULL, 33 | `gender` char(100) NOT NULL, 34 | `dob` date NOT NULL, 35 | `religion` char(100) NOT NULL, 36 | `city` char(150) NOT NULL, 37 | `created_at` timestamp NOT NULL DEFAULT current_timestamp() 38 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 39 | 40 | -- 41 | -- Dumping data for table `students` 42 | -- 43 | 44 | INSERT INTO `students` (`id`, `name`, `gender`, `dob`, `religion`, `city`, `created_at`) VALUES 45 | (1, 'Mushfiq Sir', 'Male', '2000-01-03', 'Islam', 'Dhaka', '2022-08-29 09:06:06'), 46 | (2, 'Kamal', 'Male', '0000-00-00', 'Islam', 'Chuyadanga', '2022-08-29 09:08:23'), 47 | (6, 'Aslam Khan', 'Male', '2000-10-09', 'Islam', 'Dhaka', '2022-09-01 07:10:45'), 48 | (7, 'Kamal', 'Male', '2022-01-02', 'Islam', 'Dhaka', '2022-09-01 07:38:08'), 49 | (8, 'Jamal Mia', 'Male', '2022-06-15', 'Islam', 'Dhaka', '2022-09-01 07:38:08'); 50 | 51 | -- -------------------------------------------------------- 52 | 53 | -- 54 | -- Table structure for table `teachers` 55 | -- 56 | 57 | CREATE TABLE `teachers` ( 58 | `id` int(11) NOT NULL, 59 | `name` char(100) DEFAULT NULL, 60 | `subject` char(100) DEFAULT NULL, 61 | `created_at` timestamp NOT NULL DEFAULT current_timestamp() 62 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 63 | 64 | -- 65 | -- Indexes for dumped tables 66 | -- 67 | 68 | -- 69 | -- Indexes for table `students` 70 | -- 71 | ALTER TABLE `students` 72 | ADD PRIMARY KEY (`id`); 73 | 74 | -- 75 | -- Indexes for table `teachers` 76 | -- 77 | ALTER TABLE `teachers` 78 | ADD PRIMARY KEY (`id`); 79 | 80 | -- 81 | -- AUTO_INCREMENT for dumped tables 82 | -- 83 | 84 | -- 85 | -- AUTO_INCREMENT for table `students` 86 | -- 87 | ALTER TABLE `students` 88 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; 89 | COMMIT; 90 | 91 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 92 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 93 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 94 | -------------------------------------------------------------------------------- /bac75.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 5.1.0 3 | -- https://www.phpmyadmin.net/ 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Sep 01, 2022 at 10:20 AM 7 | -- Server version: 10.4.18-MariaDB 8 | -- PHP Version: 8.0.3 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | START TRANSACTION; 12 | SET time_zone = "+00:00"; 13 | 14 | 15 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 16 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 17 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 18 | /*!40101 SET NAMES utf8mb4 */; 19 | 20 | -- 21 | -- Database: `bac75` 22 | -- 23 | 24 | -- -------------------------------------------------------- 25 | 26 | -- 27 | -- Table structure for table `district` 28 | -- 29 | 30 | CREATE TABLE `district` ( 31 | `SNo` int(11) NOT NULL, 32 | `District` varchar(20) DEFAULT NULL, 33 | `Division` varchar(20) DEFAULT NULL 34 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 35 | 36 | -- 37 | -- Dumping data for table `district` 38 | -- 39 | 40 | INSERT INTO `district` (`SNo`, `District`, `Division`) VALUES 41 | (1, '', ''), 42 | (2, 'Barisal District', 'Barisal'), 43 | (3, 'Bhola District', 'Barisal'), 44 | (4, 'Jhalokati District', 'Barisal'), 45 | (5, 'Patuakhali District', 'Barisal'), 46 | (6, 'Pirojpur District', 'Barisal'), 47 | (7, 'Bandarban District', 'Chittagong'), 48 | (8, 'Brahmanbaria Distric', 'Chittagong'), 49 | (9, 'Chandpur District', 'Chittagong'), 50 | (10, 'Chittagong District', 'Chittagong'), 51 | (11, 'Comilla District', 'Chittagong'), 52 | (12, 'Cox\'s Bazar District', 'Chittagong'), 53 | (13, 'Feni District', 'Chittagong'), 54 | (14, 'Khagrachhari Distric', 'Chittagong'), 55 | (15, 'Lakshmipur District', 'Chittagong'), 56 | (16, 'Noakhali District', 'Chittagong'), 57 | (17, 'Rangamati District', 'Chittagong'), 58 | (18, 'Dhaka District', 'Dhaka'), 59 | (19, 'Faridpur District', 'Dhaka'), 60 | (20, 'Gazipur District', 'Dhaka'), 61 | (21, 'Gopalganj District', 'Dhaka'), 62 | (22, 'Jamalpur District', 'Dhaka'), 63 | (23, 'Kishoreganj District', 'Dhaka'), 64 | (24, 'Madaripur District', 'Dhaka'), 65 | (25, 'Manikganj District', 'Dhaka'), 66 | (26, 'Munshiganj District', 'Dhaka'), 67 | (27, 'Mymensingh District', 'Dhaka'), 68 | (28, 'Narayanganj District', 'Dhaka'), 69 | (29, 'Narsingdi District', 'Dhaka'), 70 | (30, 'Netrakona District', 'Dhaka'), 71 | (31, 'Rajbari District', 'Dhaka'), 72 | (32, 'Shariatpur District', 'Dhaka'), 73 | (33, 'Sherpur District', 'Dhaka'), 74 | (34, 'Tangail District', 'Dhaka'), 75 | (35, 'Bagerhat District', 'Khulna'), 76 | (36, 'Chuadanga District', 'Khulna'), 77 | (37, 'Jessore District', 'Khulna'), 78 | (38, 'Jhenaidah District', 'Khulna'), 79 | (39, 'Khulna District', 'Khulna'), 80 | (40, 'Kushtia District', 'Khulna'), 81 | (41, 'Magura District', 'Khulna'), 82 | (42, 'Meherpur District', 'Khulna'), 83 | (43, 'Narail District', 'Khulna'), 84 | (44, 'Satkhira District', 'Khulna'), 85 | (45, 'Bogra District', 'Rajshahi'), 86 | (46, 'Joypurhat District', 'Rajshahi'), 87 | (47, 'Naogaon District', 'Rajshahi'), 88 | (48, 'Natore District', 'Rajshahi'), 89 | (49, 'Nawabganj District', 'Rajshahi'), 90 | (50, 'Pabna District', 'Rajshahi'), 91 | (51, 'Rajshahi District', 'Rajshahi'), 92 | (52, 'Sirajganj District', 'Rajshahi'), 93 | (53, 'Dinajpur District', 'Rangpur'), 94 | (54, 'Gaibandha District', 'Rangpur'), 95 | (55, 'Kurigram District', 'Rangpur'), 96 | (56, 'Lalmonirhat District', 'Rangpur'), 97 | (57, 'Nilphamari District', 'Rangpur'), 98 | (58, 'Panchagarh District', 'Rangpur'), 99 | (59, 'Rangpur District', 'Rangpur'), 100 | (60, 'Thakurgaon District', 'Rangpur'), 101 | (61, 'Habiganj District', 'Sylhet'), 102 | (62, 'Moulvibazar District', 'Sylhet'), 103 | (63, 'Sunamganj District', 'Sylhet'), 104 | (64, 'Sylhet District', 'Sylhet'); 105 | 106 | -- -------------------------------------------------------- 107 | 108 | -- 109 | -- Table structure for table `produt` 110 | -- 111 | 112 | CREATE TABLE `produt` ( 113 | `id` int(11) NOT NULL, 114 | `name` varchar(40) DEFAULT NULL, 115 | `price` float(8,2) DEFAULT NULL, 116 | `quantity` int(11) DEFAULT NULL, 117 | `vendorName` varchar(65) DEFAULT NULL, 118 | `mDate` date DEFAULT NULL, 119 | `eDate` date DEFAULT NULL, 120 | `totalAmount` float(8,2) DEFAULT NULL 121 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 122 | 123 | -- 124 | -- Dumping data for table `produt` 125 | -- 126 | 127 | INSERT INTO `produt` (`id`, `name`, `price`, `quantity`, `vendorName`, `mDate`, `eDate`, `totalAmount`) VALUES 128 | (1, 'Mouse', 450.00, 1000, 'Computer Source', '2021-10-01', '2023-10-01', 450000.00), 129 | (2, 'Keyboard', 450.00, 1000, 'Computer Source', '2021-10-01', '2023-10-01', 450000.00), 130 | (3, 'Monitor', 8000.00, 50, 'Computer Source', '2021-10-01', '2023-10-01', 400000.00); 131 | 132 | -- -------------------------------------------------------- 133 | 134 | -- 135 | -- Table structure for table `result` 136 | -- 137 | 138 | CREATE TABLE `result` ( 139 | `id` int(11) NOT NULL, 140 | `html` int(11) DEFAULT NULL, 141 | `css` int(11) DEFAULT NULL, 142 | `bac` int(11) DEFAULT NULL, 143 | `javascript` int(11) DEFAULT NULL, 144 | `stuid` int(11) NOT NULL 145 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 146 | 147 | -- 148 | -- Dumping data for table `result` 149 | -- 150 | 151 | INSERT INTO `result` (`id`, `html`, `css`, `bac`, `javascript`, `stuid`) VALUES 152 | (1, 40, 45, 48, 40, 5), 153 | (2, 50, 40, 48, 35, 4), 154 | (3, 40, 40, 40, 40, 1), 155 | (4, 30, 30, 30, 30, 2), 156 | (5, 45, 45, 45, 45, 3); 157 | 158 | -- -------------------------------------------------------- 159 | 160 | -- 161 | -- Table structure for table `stuinfo` 162 | -- 163 | 164 | CREATE TABLE `stuinfo` ( 165 | `id` int(11) NOT NULL, 166 | `name` varchar(30) DEFAULT NULL, 167 | `email` varchar(30) DEFAULT NULL, 168 | `address` varchar(45) DEFAULT NULL 169 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; 170 | 171 | -- 172 | -- Dumping data for table `stuinfo` 173 | -- 174 | 175 | INSERT INTO `stuinfo` (`id`, `name`, `email`, `address`) VALUES 176 | (1, 'Sojib', 'sojib@dipti.com.bd', 'Rayarbag'), 177 | (2, 'Shawn', 'shawn@dipti.com.bd', 'Lalmatia'), 178 | (3, 'Sadat', 'sadat@dipti.com.bd', 'Sobahna Bagh'), 179 | (4, 'Ajoy', 'ajoy@dipti.com.bd', 'Mohammadpur'), 180 | (5, 'Ratul', 'ratul@dipti.com.bd', 'Mirpur'); 181 | 182 | -- 183 | -- Indexes for dumped tables 184 | -- 185 | 186 | -- 187 | -- Indexes for table `district` 188 | -- 189 | ALTER TABLE `district` 190 | ADD PRIMARY KEY (`SNo`); 191 | 192 | -- 193 | -- Indexes for table `produt` 194 | -- 195 | ALTER TABLE `produt` 196 | ADD PRIMARY KEY (`id`); 197 | 198 | -- 199 | -- Indexes for table `result` 200 | -- 201 | ALTER TABLE `result` 202 | ADD PRIMARY KEY (`id`), 203 | ADD KEY `id` (`stuid`); 204 | 205 | -- 206 | -- Indexes for table `stuinfo` 207 | -- 208 | ALTER TABLE `stuinfo` 209 | ADD PRIMARY KEY (`id`); 210 | 211 | -- 212 | -- AUTO_INCREMENT for dumped tables 213 | -- 214 | 215 | -- 216 | -- AUTO_INCREMENT for table `district` 217 | -- 218 | ALTER TABLE `district` 219 | MODIFY `SNo` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65; 220 | 221 | -- 222 | -- AUTO_INCREMENT for table `produt` 223 | -- 224 | ALTER TABLE `produt` 225 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; 226 | 227 | -- 228 | -- AUTO_INCREMENT for table `result` 229 | -- 230 | ALTER TABLE `result` 231 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 232 | 233 | -- 234 | -- AUTO_INCREMENT for table `stuinfo` 235 | -- 236 | ALTER TABLE `stuinfo` 237 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 238 | 239 | -- 240 | -- Constraints for dumped tables 241 | -- 242 | 243 | -- 244 | -- Constraints for table `result` 245 | -- 246 | ALTER TABLE `result` 247 | ADD CONSTRAINT `id` FOREIGN KEY (`stuid`) REFERENCES `stuinfo` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; 248 | COMMIT; 249 | 250 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 251 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 252 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 253 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 |