Retrieve data from database using CodeIgniter frameworkIn this example we will discuss about how to retrieve a record or data from MySQL database using CodeIgniter framework PHP.For retrieve data from MySQL database using CodeIgniter framework first we have to create a table in data base.After create a table in the MySQL database you need to insert...
28 September, 2018
Retrieve data from database using CodeIgniter framework
Retrieve data from database using CodeIgniter framework
In this example we will discuss about how to retrieve a record or data from MySQL database using CodeIgniter framework PHP.
For retrieve data from MySQL database using CodeIgniter framework first we have to create a table in data base.
After create a table in the MySQL database you need...
How to insert data in database - CodeIgniter framework
Programing Coderfunda
September 28, 2018
codeigniter
No comments
In this example we are going to show you how to insert data in database using CodeIgniter framework PHP.For insert data in MySQL using CodeIgniter first we have to create a table in data base.The INSERT INTO statement is used to insert new data to a MySQL table:INSERT INTO table_name (column1, column2, column3,...)VALUES (value1, value2, value3,...)To...
How to insert data in database - CodeIgniter framework
In this example we are going to show you how to insert data in database using CodeIgniter framework PHP.
For insert data in MySQL using CodeIgniter first we have to create a table in data base.
The INSERT INTO statement is used to insert new data to a MySQL table:
INSERT INTO table_name (column1, column2, column3,...)VALUES (value1, value2, value3,...)
To...
Session with example CodeIgniter framework
Programing Coderfunda
September 28, 2018
codeigniter
No comments
Session with example CodeIgniter frameworkIn CodeIgniter or any other framework session is used to store information (in variables) and used it through out the application.Initializing SessionTo store data in session first of all we need to initialize the session.In PHP we initialize the session by simply write the session_start(); function.But...
Session with example CodeIgniter framework
Session with example CodeIgniter framework
In CodeIgniter or any other framework session is used to store information (in variables) and used it through out the application.
Initializing Session
To store data in session first of all we need to initialize the session.
In PHP we initialize the session by simply write the session_start(); function.
But...
Hello world example - CodeIgniter framework
Programing Coderfunda
September 28, 2018
No comments
In this example we will discuss about Hello world example CodeIgniter framework PHP.We use two file for hello world example.Hello.php (CodeIgniter\application\controllers\Hello.php )hello_world.php (CodeIgniter\application\views\hello_world.php)Hello.php<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Hello extends CI_Controller...
Hello world example - CodeIgniter framework
In this example we will discuss about Hello world example CodeIgniter framework PHP.
We use two file for hello world example.
Hello.php (CodeIgniter\application\controllers\Hello.php )
hello_world.php (CodeIgniter\application\views\hello_world.php)
Hello.php
<?php defined('BASEPATH') OR exit('No direct script access...