Posts

Showing posts from January, 2023

Home Loan Management System Using PHP and MySQL

Image
  Home Loan Management System in PHP Home Loan Management System Project Using PHP and MySQL is a Web-based Application. The main objective is to provide good interaction & communication facilities between customers & the Administrator. Home Loan management Project has been designed to online the back-office activities of bank and finance company that offers home loan. The administrator manages the customer information database more efficiently, Loan details, inquiry, and interest rate information. Admin can use a calculator to give exact payable loan amount for the customer & generate all these work info as a report of each customer. Home Loan Management System Project in PHP Requirements Project Name Home Loan Management System Language Used PHP5.6, PHP7.x Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) Download Home Loan Management System In Rs. 499/$6.68 Onl

Blood Donor Management System Using CodeIgniter

Image
  Blood Donor Management Project Using CodeIgniter Blood Donor Management System Project Using CodeIgniter is a Web-Based application. This application is used to maintain the Blood Donor Record based on the blood group. Blood Donor Management Project developed using  CodeIgniter  (PHP framework) and  MySQL  Database. BDMS Project Requirements Blood Donor Management System Using CodeIgniter Language Used PHP5.6, PHP7.x PHP Framework Used CodeIgniter Database MySQL 5.x User Interface Design HTML, AJAX,JQUERY,JAVASCRIPT Web Browser Mozilla, Google Chrome, IE8, OPERA Software XAMPP / Wamp / Mamp/ Lamp (anyone) Project Modules BDMS has three modules i.e. admin, Blood Donor, and user. Admin Module Dashboard:  In this section admin can briefly view of Blood Groups and Registered Blood Donors. Blood Groups:  In this section, admin can manage the Subjects (add/delete). User Details:  In this section, admin can view, and delete the registered blood donors. Profile : In this section admin can up

What is CSS | Cascading Style Sheet | PHP Gurukul

Image
  CSS stands for Cascading Style Sheets. –  Cascading  refers to the way CSS applies one style on top of another. –  Style Sheets  control the look and feel of web documents. CSS  and  HTML  work hand in hand: – HTML sorts out the page structure. – CSS defines how HTML elements are displayed. It is a design language that is used to design web pages. It was developed by HÃ¥kon Wium Lie on October 10, 1994. It provides a powerful technique for the presentation of HTML documents. It handles the look and feels part of a web page. It describes HTML elements and how to be displayed on the screen. It has various advantages like Page load fast, Save Time, Offline browsing, and many more. The latest version of CSS is CSS3. CSS is the language for describing the presentation of Web pages, including colors, layout, size, and fonts, and its stands for “Cascading Style Sheets.” It describes how HTML elements are to be shown on screen, paper, web page, or any media. Click Here : https://phpgurukul.

CRUD operation in CodeIgniter | PHP Gurukul

Image
 In previous tutorial we learned  how to insert data into data in CodeIgniter.  In this tutorial we will learn how to fetch data from database in CodeIgniter. 1. Create a model(Read_data_Model.php) inside application/mode   1 2 3 4 5 6 7 8 < ? php Class Read_data_Model extends CI_Model { public function readdata ( ) { $ query = $ this -> db -> select ( 'fullName,mobileNumber,emailId,gender,address,termsCondition,postingDate' )                -> get ( 'tblusers' ) ;          return $ query -> result ( ) ; } } 2. Create a controller(Read_data.php) inside application/controller   1 2 3 4 5 6 7 8 9 10 11 < ? php Class Read_data extends CI_Controller { public function index ( ) { //load model $ this -> load -> model ( 'Read_data_Model' ) ; //load model function $ results = $ this -> Read_data_Model -> readdata ( ) ; //loading view with passing result array $ this -> load -> view ( 'read_data' , [ 'result

Active Record in CodeIgniter | PHP Gurukul

Image
  CodeIgniter uses a modified version of the Active Record Database Pattern. This pattern allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two lines of code are necessary to perform a database action. CodeIgniter does not require that each database table be its own class file. It instead provides a more simplified interface. Selecting data All of the functions in this section will build SQL SELECT queries. All of the SQL in this section is MySQL; other database systems may differ slightly. $this->db->get(); The simplest query that you can do with Active Record is to select a full database table. This is done with one single function:   1 $ this -> db -> get ( ) ; This would create the SQL query:   1 SELECT * FROM ` table_name ` ; This function has three parameters. The first is the name of the database table. The second lets you set a limit, and the third lets you set an offset.   1 $ query = $