28 September, 2018
CodeIgniter a very popular and powerful MVC framework which is used to develop web applications. It is a free and Open source PHP framework.What You Should Already KnowBefore you continue you should have a basic understanding of the following:HTMLPHPHistoryCodeIgniter was created by EllisLab, and is now a project of the British Columbia Institute of...
CodeIgniter framework Tutorial
CodeIgniter a very popular and powerful MVC framework which is used to develop web applications. It is a free and Open source PHP framework.
What You Should Already Know
Before you continue you should have a basic understanding of the following:
HTML
PHP
History
CodeIgniter was created by EllisLab, and is now a project of the British Columbia...
26 September, 2018
Show the data in front end user
Programing Coderfunda
September 26, 2018
No comments
<footer class="re-footer-section"> <?php $rest = $this->db->where('id','1')->get('site_settings')->row();?>Note: if you have contact page and you want to show the data other page in contect page then you use upper code then your data show in all pages&nb...
Show the data in front end user
<footer class="re-footer-section">
<?php
$rest = $this->db->where('id','1')->get('site_settings')->row();
?>
Note: if you have contact page and you want to show the data other page in contect page then you use upper code then your data show in all pages ...
24 September, 2018
insert the data in codeigniter with database very simple way
Programing Coderfunda
September 24, 2018
No comments
database Name : contact View file name : contact Mode.phppublic function insertdata($data) { $data= array ( 'name'=>$this->input->post('name'), 'email'=>$this->input->post('email'), 'subject'=>$this->input->post('subject'), 'message'=>$this->input->post('message'), ); $datas...
insert the data in codeigniter with database very simple way
database Name : contact
View file name : contact
Mode.php
public function insertdata($data)
{
$data= array
(
'name'=>$this->input->post('name'),
'email'=>$this->input->post('email'),
'subject'=>$this->input->post('subject'),
'message'=>$this->input->post('message'),
...
20 September, 2018
Image Upload in Database Codeigniter Very Simple Way
Programing Coderfunda
September 20, 2018
No comments
Controller.phppublic function update_account_setting() { $id = $this->session->userdata('uid'); $config['upload_path'] = './uploads/'; $config['allowed_types'] = 'gif|jpg|jpeg|png'; $this->load->library('upload', $config); $this->upload->initialize($config);...
CodeIgniter Form Validation – Setting Rules, Setting Error Messages and Repopulating Form
Programing Coderfunda
September 20, 2018
No comments
15 September, 2018
Upload image in Codeigniter Very Simple Way
Programing Coderfunda
September 15, 2018
codeigniter
No comments
Hi Guys ! if you Want to Upload image with Codeigniter. So you use these code and work very fast.1)First you create twoView File.1. Upload_Form.php2 Upload_Success.phpThen you create Controller File.Upload.phpThen you create a folder in root ,"uploads" name .Your images. file save in upload folder. So as on you copy the code and put...
Upload image in Codeigniter Very Simple Way
Hi Guys ! if you Want to Upload image with Codeigniter. So you use these code and work very fast.
1)First you create twoView File.
1. Upload_Form.php
2 Upload_Success.php
Then you create Controller File.
Upload.php
Then you create a folder in root ,"uploads" name .
Your images. file save in upload folder. So as on you
copy the...
How to Upload Image and File in Database by CodeIgniter
Programing Coderfunda
September 15, 2018
codeigniter
No comments
1). Create View.php File2). Create view_model.php File in model folder3).Create Upload.php File in ControllerView.php File<div class="card-body"> <div class="row">Important Note : Form is very compulsory in action part see and use according to url of your file ...
How to Upload Image and File in Database by CodeIgniter
1). Create View.php File
2). Create view_model.php File in model folder
3).Create Upload.php File in Controller
View.php File
<div class="card-body">
<div class="row">
Important Note : Form is very compulsory in action part see and use according to url of your file
...