-
Video : Showing all the results in Codeigniter 4
-
Video : Update the record in Codeigniter 4
-
Video : Delete operation in Codeigniter 4
-
Video : Adding Bootstrap 4 in Codeigniter 4 in the Crud Application
-
Video : Create the form in Codeigniter 4 and insert the record
-
Video : Conclusion of CRUD operation in codeigniter 4
Adding Bootstrap 4 in Codeigniter 4 in the Crud Application
Please Login and enroll in this course to view the lesson.
Its time to add the words powerful front-end framework bootstrap; I am talking bootstrap 4; adding bootstrap 4 in Codeigniter 4 is not a difficult task you need to add the CDN OR download the bootstrap files and add them to our project; it's simple.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="<?php echo base_url('bootstrap/css/bootstrap.css')?>" type="text/css">
<title>Add Bootstrap 4 in codeigniter 4</title>
</head>