CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

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.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 code and put sequince waise.

Run the program . if any question arise in your mind so you can comment in comment box.




Upload_Form.php

<html>
<head>
<title>Upload Form</title>
</head>
<body>

<?php echo $error;?>

<?php echo form_open_multipart('upload/do_upload');?>

<input type="file" name="userfile" size="20" />

<br /><br />

<input type="submit" value="upload" />

</form>

</body>
</html>


Upload_Success.php
<html>
<head>
<title>Upload Form</title>
</head>
<body>

<h3>Your file was successfully uploaded!</h3>

<ul>
<?php foreach ($upload_data as $item => $value):?>
<li><?php echo $item;?>: <?php echo $value;?></li>
<?php endforeach; ?>
</ul>

<p><?php echo anchor('upload', 'Upload Another File!'); ?></p>

</body>

</html>

.......

Controller
Upload.php

<?php

class Upload extends CI_Controller {

        public function __construct()
        {
                parent::__construct();
                $this->load->helper(array('form', 'url'));
        }

        public function index()
        {
                $this->load->view('upload_form', array('error' => ' ' ));
        }

        public function do_upload()
        {
                $config['upload_path']          = './uploads/';
                $config['allowed_types']        = 'gif|jpg|png';
                $config['max_size']             = 100;
                $config['max_width']            = 1024;
                $config['max_height']           = 768;

                $this->load->library('upload', $config);

                if ( ! $this->upload->do_upload('userfile'))
                {
                        $error = array('error' => $this->upload->display_errors()
                        $this->load->view('upload_form', $error);
                }
                else
                {
                        $data = array('upload_data' => $this->upload->data());
                        $this->load->view('upload_success', $data);
                }
        }
}

?>

Model

user_model.php

...............
Dont Use In Uploading File ,,,you can learn only some secretly ..

insert edit view

<?php
class User_model extends CI_Model {

    public function __construct()
    {
        $this->load->database();
    }
    
    public function get_user($id = 0)
    {
        if ($id === 0)
        {
            $query = $this->db->get('user');
            return $query->result_array();
        }

        $query = $this->db->get_where('user', array('id' => $id));
        return $query->row_array();
    }
    
    public function get_user_login($email, $password)
    {
        $query = $this->db->get_where('user', array('email' => $email, 'password' => $password));        
        //return $query->num_rows();
        return $query->row_array();
    }
    
    public function set_user($id = 0)
    {
        $data = array(
            'firstname' => $this->input->post('firstname'),
            'lastname' => $this->input->post('lastname'),
            'email' => $this->input->post('email'),
            'password' => $this->input->post('password'),
            'updated_at' => date('Y-m-d H:i:s')
        );
            
        if ($id == 0) {
            return $this->db->insert('user', $data);
        } else {
            $this->db->where('id', $id);
            return $this->db->update('user', $data);
        }
    }
    
    public function delete_user($id)
    {
        $this->db->where('id', $id);
        return $this->db->delete('user');
    }    
    

}

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Upload image in Codeigniter Very Simple Way

 Programing Funda     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.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 code and put sequince waise.

Run the program . if any question arise in your mind so you can comment in comment box.




Upload_Form.php

<html>
<head>
<title>Upload Form</title>
</head>
<body>

<?php echo $error;?>

<?php echo form_open_multipart('upload/do_upload');?>

<input type="file" name="userfile" size="20" />

<br /><br />

<input type="submit" value="upload" />

</form>

</body>
</html>


Upload_Success.php
<html>
<head>
<title>Upload Form</title>
</head>
<body>

<h3>Your file was successfully uploaded!</h3>

<ul>
<?php foreach ($upload_data as $item => $value):?>
<li><?php echo $item;?>: <?php echo $value;?></li>
<?php endforeach; ?>
</ul>

<p><?php echo anchor('upload', 'Upload Another File!'); ?></p>

</body>

</html>

.......

Controller
Upload.php

<?php

class Upload extends CI_Controller {

        public function __construct()
        {
                parent::__construct();
                $this->load->helper(array('form', 'url'));
        }

        public function index()
        {
                $this->load->view('upload_form', array('error' => ' ' ));
        }

        public function do_upload()
        {
                $config['upload_path']          = './uploads/';
                $config['allowed_types']        = 'gif|jpg|png';
                $config['max_size']             = 100;
                $config['max_width']            = 1024;
                $config['max_height']           = 768;

                $this->load->library('upload', $config);

                if ( ! $this->upload->do_upload('userfile'))
                {
                        $error = array('error' => $this->upload->display_errors()
                        $this->load->view('upload_form', $error);
                }
                else
                {
                        $data = array('upload_data' => $this->upload->data());
                        $this->load->view('upload_success', $data);
                }
        }
}

?>

Model

user_model.php

...............
Dont Use In Uploading File ,,,you can learn only some secretly ..

insert edit view

<?php
class User_model extends CI_Model {

    public function __construct()
    {
        $this->load->database();
    }
    
    public function get_user($id = 0)
    {
        if ($id === 0)
        {
            $query = $this->db->get('user');
            return $query->result_array();
        }

        $query = $this->db->get_where('user', array('id' => $id));
        return $query->row_array();
    }
    
    public function get_user_login($email, $password)
    {
        $query = $this->db->get_where('user', array('email' => $email, 'password' => $password));        
        //return $query->num_rows();
        return $query->row_array();
    }
    
    public function set_user($id = 0)
    {
        $data = array(
            'firstname' => $this->input->post('firstname'),
            'lastname' => $this->input->post('lastname'),
            'email' => $this->input->post('email'),
            'password' => $this->input->post('password'),
            'updated_at' => date('Y-m-d H:i:s')
        );
            
        if ($id == 0) {
            return $this->db->insert('user', $data);
        } else {
            $this->db->where('id', $id);
            return $this->db->update('user', $data);
        }
    }
    
    public function delete_user($id)
    {
        $this->db->where('id', $id);
        return $this->db->delete('user');
    }    
    

}

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How to Upload Image and File in Database by CodeIgniter

 Programing Coderfunda     September 15, 2018     codeigniter     No comments   

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
              <form method='post' action='<?php echo base_url()?>admin/add_doct' enctype="multipart/form-data"> 
               <div class="col-md-12">
                  <label>Doctor Name</label>
                  <div class="form-group">
                     <?php echo form_input(array("type"=>"text",'name'=>'name'),'',array('class'=>'form-control','placeholder'=>'','required'=>'required')); ?>
                        <span>  <?= $this->session->flashdata('successful_msg');?></span>
                  </div>
                  <div class="form-group">
                     <label>Image </label>

                     <?php echo form_input(array("type"=>"file",'name'=>'images'),'',array('class'=>'form-control','placeholder'=>'','required'=>'required')); ?>
                        <span>  <?= $this->session->flashdata('successful_msg');?></span>
                        <!-- <div class="col-lg-6">
                           <?php //if (isset($upload_error)) echo $upload_error;?>
                        </div> -->
                  </div>
                     <p class="text-center">
                        <?php echo form_submit('submit', 'submit',array("class"=>"btn_1 medium")); ?>
                     </p>
                  </div>   
               </div>
              </form> 
            </div>
         </div>

Model.php

public function add_doct()
{
//$data = $this->db->select(`name`)->get($this->product)->result_array();
$name = $this->input->post('name');
$images = $this->input->post('images');
//print_r($image); die();
$this->db->where('name',$name);
$p = $this->db->get('product')->row();
    if (empty($p)) {
      $data = array(

      'name'=>$this->input->post('name'),
      'images'=>$this->input->post('images')
      );
      $this->db->insert('product',$data);
      return 1;
    }
    else
    {
    return 0;
    }

}


Controller.php
public function add_doct()
{
$this->load->model('Doctor');
$data['page_title'] = "Add Product List";
if($this->input->post())
{
$values = $this->input->post();
$config['upload_path']          = './uploads';
$config['allowed_types']        = 'png|jpg|jpeg|gif';
$this->load->library('upload', $config);
$filedata['file_name'] = "";
$error = "";
if (!$this->upload->do_upload('images')):
    $error = array('error' => $this->upload->display_errors());
    //print_r($error); die();
else:
    $filedata = array('upload_data' => $this->upload->data());
endif;
if($error==""):
$values['images'] = $filedata['upload_data']['file_name'];
endif;
//$values['creation_date'] = time();
$datas = array(

      'name'=>$values['name'], //database name 'name'
      'images'=>$values['images'] //database name images
      );
$this->db->insert("database Name",$datas);
$this->session->set_flashdata("success_msg","Pruduct has been created");
redirect(base_url('admin/drdetailing/add_productlist'));
$this->load->template('admin/drdetailing/add_productlist',$data,1);
}
if($ins == 1){
$this->session->set_flashdata('message_name','Data Submitted');
redirect('admin/drdetailing/view_productlist');
}else{
$this->session->set_flashdata('message_name','This name allready exist');
redirect('admin/drdetailing/view_productlist');
}
$data['page_title'] = "Add Doctor & you can change name";
$this->load->template('admin/drdetailing/add_productlist',$data,1);

}


Important Note : Change :

Database name : Name & images

file


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How to Upload Image and File in Database by CodeIgniter

 Programing Funda     September 15, 2018     codeigniter     No comments   

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
              <form method='post' action='<?php echo base_url()?>admin/add_doct' enctype="multipart/form-data"> 
               <div class="col-md-12">
                  <label>Doctor Name</label>
                  <div class="form-group">
                     <?php echo form_input(array("type"=>"text",'name'=>'name'),'',array('class'=>'form-control','placeholder'=>'','required'=>'required')); ?>
                        <span>  <?= $this->session->flashdata('successful_msg');?></span>
                  </div>
                  <div class="form-group">
                     <label>Image </label>

                     <?php echo form_input(array("type"=>"file",'name'=>'images'),'',array('class'=>'form-control','placeholder'=>'','required'=>'required')); ?>
                        <span>  <?= $this->session->flashdata('successful_msg');?></span>
                        <!-- <div class="col-lg-6">
                           <?php //if (isset($upload_error)) echo $upload_error;?>
                        </div> -->
                  </div>
                     <p class="text-center">
                        <?php echo form_submit('submit', 'submit',array("class"=>"btn_1 medium")); ?>
                     </p>
                  </div>   
               </div>
              </form> 
            </div>
         </div>

Model.php

public function add_doct()
{
//$data = $this->db->select(`name`)->get($this->product)->result_array();
$name = $this->input->post('name');
$images = $this->input->post('images');
//print_r($image); die();
$this->db->where('name',$name);
$p = $this->db->get('product')->row();
    if (empty($p)) {
      $data = array(

      'name'=>$this->input->post('name'),
      'images'=>$this->input->post('images')
      );
      $this->db->insert('product',$data);
      return 1;
    }
    else
    {
    return 0;
    }

}


Controller.php
public function add_doct()
{
$this->load->model('Doctor');
$data['page_title'] = "Add Product List";
if($this->input->post())
{
$values = $this->input->post();
$config['upload_path']          = './uploads';
$config['allowed_types']        = 'png|jpg|jpeg|gif';
$this->load->library('upload', $config);
$filedata['file_name'] = "";
$error = "";
if (!$this->upload->do_upload('images')):
    $error = array('error' => $this->upload->display_errors());
    //print_r($error); die();
else:
    $filedata = array('upload_data' => $this->upload->data());
endif;
if($error==""):
$values['images'] = $filedata['upload_data']['file_name'];
endif;
//$values['creation_date'] = time();
$datas = array(

      'name'=>$values['name'], //database name 'name'
      'images'=>$values['images'] //database name images
      );
$this->db->insert("database Name",$datas);
$this->session->set_flashdata("success_msg","Pruduct has been created");
redirect(base_url('admin/drdetailing/add_productlist'));
$this->load->template('admin/drdetailing/add_productlist',$data,1);
}
if($ins == 1){
$this->session->set_flashdata('message_name','Data Submitted');
redirect('admin/drdetailing/view_productlist');
}else{
$this->session->set_flashdata('message_name','This name allready exist');
redirect('admin/drdetailing/view_productlist');
}
$data['page_title'] = "Add Doctor & you can change name";
$this->load->template('admin/drdetailing/add_productlist',$data,1);

}


Important Note : Change :

Database name : Name & images

file


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

30 August, 2018

Select Data table by select query CodeIgniter

 Programing Coderfunda     August 30, 2018     codeigniter     No comments   

Hi, Guys you can fetch data frome database "sql" very simple steps just follow you.

 'Controller' 

public function about_us(){
$data["result"]=$this->courses_model->fetch_data();
//print_r($data['result']->field); die();
//$this->load->model('Test');
$this->load->view('about-us',$data);
}

*

/////////////course_model

public function fetch_data()
{
return $this->db->select('field')->from('about')->get()->row();
//$query=$this->db->get("about")->row();
//$query=$this->db->query("SELECT * FROM about");
//$result = mysql_query("SELECT * FROM about ")or die(mysql_error());
//$query = mysql_fetch_array( $result );
//print_r($query); die();
return $query;
//WHERE last_name='Hart'

}


ablut-us (Html)

<section class="sec_1127024">
      <div class="container com-sp pad-bot-70">
        <div class="row">

        <div class="col-md-12">
            <div class="col-md-12">
              <h2 class="hd_112824">About Us</h2>


                <?php
                      echo $result->field;
               
                 ?>
           
              <a class="btn_112124" href="<?php echo base_url();?>Welcome/contact">Get in touch</a>
            </div>
          <!--   <div class="col-md-4 text-right">
              <img src="<?php echo base_url();?>assets/images/temp/kjhgfsdgudsgdhghd.png" class="max-width-sty">
            </div> -->
          </div>

       
        </div>
      </div>
    </section>

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Select Data table by select query ...Codeiginter

 Programing Funda     August 30, 2018     codeigniter     No comments   

Welcom....


* Welcom.... 'Controller'

public function about_us(){
$data["result"]=$this->courses_model->fetch_data();
//print_r($data['result']->field); die();
//$this->load->model('Test');
$this->load->view('about-us',$data);
}

*

/////////////course_model

public function fetch_data()
{
return $this->db->select('field')->from('about')->get()->row();
//$query=$this->db->get("about")->row();
//$query=$this->db->query("SELECT * FROM about");
//$result = mysql_query("SELECT * FROM about ")or die(mysql_error());
//$query = mysql_fetch_array( $result );
//print_r($query); die();
return $query;
//WHERE last_name='Hart'

}


ablut-us (Html)

<section class="sec_1127024">
      <div class="container com-sp pad-bot-70">
        <div class="row">

        <div class="col-md-12">
            <div class="col-md-12">
              <h2 class="hd_112824">About Us</h2>


                <?php
                      echo $result->field; Main
               
                 ?>
           
              <a class="btn_112124" href="<?php echo base_url();?>Welcome/contact">Get in touch</a>
            </div>
          <!--   <div class="col-md-4 text-right">
              <img src="<?php echo base_url();?>assets/images/temp/kjhgfsdgudsgdhghd.png" class="max-width-sty">
            </div> -->
          </div>


       
        </div>
      </div>
    </section>

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

29 August, 2018

Select data in table & Update data of table

 Programing Coderfunda     August 29, 2018     codeigniter     No comments   

HTML about.php

<form method="post" action="<?php echo base_url(); ?>admin/about"  enctype='multipart/form-data'>
                <div class="tab-inn">
                  <div class="row">
                   <div class="col-lg-12 nopadding col s12">
                      <label style="margin-top: 20px;">About Description</label>
                      <textarea class="ckeditor" cols="80" id="descen1" rows="10" name="about_description"><?php if($about->field!=''){ echo $about->field; } ?></textarea>
                      <span class="error_val"><?php echo $this->session->flashdata('about_description'); ?></span>
                      <input type="hidden" name="id" value="<?php if($about->id!=''){ echo $about->id; } ?>" id="t3">
                    </div>
                  <div class="input-field col s12">
                    <i class="waves-effect waves-light btn-large waves-input-wrapper" style="">
                      <input type="submit" class="waves-button-input" value="Add"></i>
                  </div>
                  </div>
                  <div class="clearfix"></div>
                  </div>
                  <input type="text" name="edit" value="">
</form>


>>>>>>>>>>>>>>>>>>>>admin.php

public function about($input)
{
$input=$this->input->post();

$data['about']=$this->course_model->get_about();  (select data frome table)

if(!empty($input))
{
$result=$this->course_model->about($input);
    if($result==1)
      {
$this->session->set_flashdata('success','Data Submit.');
redirect('admin/about');
      }
      else
{
$this->session->set_flashdata('success','Fill the Data Not Changes.');
redirect('admin/about');

}

}
/*if condition is true then it work ((data submit & resubmit call submit))*/

$this->load->view('admin/about',$data);  (page loader)

}
................................................

admin.course.model.php
........................................................Model.................

public function get_about()
{
return $this->db->get('about')->row(); (Select from table only 1 row)
}

public function about($input)
{
$data=array('field'=>$input['about_description']);
if($input['id']=='')
{
$query=$this->db->insert('about',$data);
}
else
{
$query=$this->db->where('id',$input['id'])->update('about',$data);
}

if($query)
{
return true;
}
else
{
return false;
}


}


Table Name : About

ID: 1;
Field :  'hello fr. data inserted in row';

route



$route['admin/about'] = 'admin/admin/about';

$route i use for shortcut....


Note ::  <?php if($about->field!=''){ echo $about->field; } ?> in text area .html field.

$about is database name

(Field) is a table row name

Rule : if

<input type="hidden" name="id" value="<?php if($about->id!=''){ echo $about->id; } ?>" id="t3">

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Select data in table & Update data of table

 Programing Funda     August 29, 2018     codeigniter     No comments   

HTML about.php

<form method="post" action="<?php echo base_url(); ?>admin/about"  enctype='multipart/form-data'>
                <div class="tab-inn">
                  <div class="row">
                   <div class="col-lg-12 nopadding col s12">
                      <label style="margin-top: 20px;">About Description</label>
                      <textarea class="ckeditor" cols="80" id="descen1" rows="10" name="about_description"><?php if($about->field!=''){ echo $about->field; } ?></textarea>
                      <span class="error_val"><?php echo $this->session->flashdata('about_description'); ?></span>
                      <input type="hidden" name="id" value="<?php if($about->id!=''){ echo $about->id; } ?>" id="t3">
                    </div>
                  <div class="input-field col s12">
                    <i class="waves-effect waves-light btn-large waves-input-wrapper" style="">
                      <input type="submit" class="waves-button-input" value="Add"></i>
                  </div>
                  </div>
                  <div class="clearfix"></div>
                  </div>
                  <input type="text" name="edit" value="">
</form>


>>>>>>>>>>>>>>>>>>>>admin.php

public function about($input)
{
$input=$this->input->post();

$data['about']=$this->course_model->get_about();  (select data frome table)

if(!empty($input))
{
$result=$this->course_model->about($input);
    if($result==1)
      {
$this->session->set_flashdata('success','Data Submit.');
redirect('admin/about');
      }
      else
{
$this->session->set_flashdata('success','Fill the Data Not Changes.');
redirect('admin/about');

}

}
/*if condition is true then it work ((data submit & resubmit call submit))*/

$this->load->view('admin/about',$data);  (page loader)

}
................................................

admin.course.model.php
........................................................Model.................

public function get_about()
{
return $this->db->get('about')->row(); (Select from table only 1 row)
}

public function about($input)
{
$data=array('field'=>$input['about_description']);
if($input['id']=='')
{
$query=$this->db->insert('about',$data);
}
else
{
$query=$this->db->where('id',$input['id'])->update('about',$data);
}

if($query)
{
return true;
}
else
{
return false;
}


}


Table Name : About

ID: 1;
Field :  'hello fr. data inserted in row';

route



$route['admin/about'] = 'admin/admin/about';

$route i use for shortcut....


Note ::  <?php if($about->field!=''){ echo $about->field; } ?> in text area .html field.

$about is database name

(Field) is a table row name

Rule : if

<input type="hidden" name="id" value="<?php if($about->id!=''){ echo $about->id; } ?>" id="t3">

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

28 August, 2018

How to Insert Data In Data Base According by Codeigniter

 Programing Coderfunda     August 28, 2018     codeigniter     No comments   

Hi Guys you can use very simple

1. if you instal (IC)
.
Then you 1st Create A tabel in data base

CREATE DATABASE oktech_courses;CREATE TABLE contact(id int(10) NOT NULL AUTO_INCREMENT,Name varchar(255) NOT NULL,
Phone int(15) NOT NULL,
City varchar(255) NOT NULL, Email varchar(255) NOT NULL,
Message text(255) NOT NULL,Date timestamp(255) NOT NULL,PRIMARY KEY (Student_id))


connect database to you file then

Then you go the controller and open file welcome.php

$this->load->helper(array('form','url','validate_helper','image_helper')); $this->load->library(array('email','session','form_validation'));

Insert the text:

>> public function filename contect()
{
$this->load->view('Contect');
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
public function contact(){ $this->load->view('contact'); }
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
public function contact_form(){ $input=$this->input->post();Validation Satart if(!empty($input)) { require_validations(['name','phone','city','email','message'],'','CI','Welcome/contact'); $result=$this->courses_model->contact_form($input); if($result==true) { $to='vinaykumar.vismaad@gmail.com'; $subject='Contact-US Enquiry'; $message='Email : '.$input['email'].'<br> '.'Name :'.$input['name'].'<br>'.'phone :'.$input['phone'].'<br>'.'city :'.$input['city'].'<br>'.'message :'.$input['message']; $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; $headers .= 'From: oketch-courses<info@oketch-courses.com>' . "\r\n" . 'Reply-To: no-reply@oketch-courses.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $sta_email=mail($to,$subject,$message,$headers); $this->session->set_flashdata('success','Contact form Successfully submit.'); } else { $this->session->set_flashdata('error','Unable to Submit Contact form.'); } redirect('Welcome/contact'); } else { redirect('Welcome/contact'); } }




Validation End
you can change the contact name acording your file.

$input >> Store the all value in variable


><>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


Contact.php



<div class="container"> <div class="overlay-contact footer-part footer-part-form"> <div class="map-head"> <p>Send Us Now</p> <h2>GetIn Touch</h2> <span class="footer-ser-re">Service Request Form</span> </div> <!-- ENQUIRY FORM -->
Validation
<?php if(!empty($this->session->flashdata('error'))){ ?> <div class="alert alert-danger alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button> <i class="fa fa-times-circle"></i> <?php echo $this->session->flashdata('error'); ?> </div> <?php } ?> <?php if(!empty($this->session->flashdata('success'))){ ?> <div class="alert alert-success alert-dismissible" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button> <i class="fa fa-times-circle"></i> <?php echo $this->session->flashdata('success'); ?> </div> <?php } ?>

Validation

form

*Note : Welcome/contact_form You can change name which you create file name in welcome page

* Contact_forme Taken By welcome to function you can check the welcome.php page.



<form method="post" action="<?php echo base_url(); ?>/Welcome/contact_form"> <ul> <li class="col-md-6 col-sm-6 col-xs-12 contact-input-spac"> <input type="text" id="f1" value="" name="name" placeholder="Name" > <span class="error_val"><?php echo $this->session->flashdata('name'); ?></span> </li> <li class="col-md-6 col-sm-6 col-xs-12 contact-input-spac"> <input type="text" id="f2" value="" name="phone" placeholder="Phone" > <span class="error_val"><?php echo $this->session->flashdata('phone'); ?></span> </li> <li class="col-md-6 col-sm-6 col-xs-12 contact-input-spac"> <input type="text" id="f3" value="" name="city" placeholder="City"> <span class="error_val"><?php echo $this->session->flashdata('city'); ?></span> </li> <li class="col-md-6 col-sm-6 col-xs-12 contact-input-spac"> <input type="email" id="f4" value="" name="email" placeholder="Email"> <span class="error_val"><?php echo $this->session->flashdata('email'); ?></span> </li> <li class="col-md-12 col-sm-12 col-xs-12 contact-input-spac"> <textarea id="f5" name="message" ></textarea> <span class="error_val"><?php echo $this->session->flashdata('message'); ?></span> </li> <li class="col-md-6"> <input type="submit" value="SUBMIT"> </li> </ul> </form> </div> </div>


*Note :

This scentex use when you give a temprory data story
and you get better result
...When you create a forme the clic submit button
then show the data "submit" if error the page redirect
same page or 1 time use if you reload page then it
erase the success data note.

<input type="email" id="f4" value="" name="email" placeholder="Email">

<span class="error_val"><?php echo $this->session->flashdata('Email'); ?></span>



form



Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Meta

Popular Posts

  • Generate Migrations from an Existing Database With the Migration Generator Package
    Laravel Migration Generator Migration Generator for Laravel is a package by Bennett Treptow to generate migrations from existing database ...
  • Tailwindcss best practices for responsive design
    Tailwind CSS provides powerful utilities for responsive design out of the box. To use it effectively and maintain clean, scalable code, here...
  • Search Through Models with Laravel Searchable
      Laravel Searchable   is a package by   Spatie   to search through models and other sources pragmatically. Using this package, you can get ...
  • Laravel Razorpay Integration | Payment gateway integration Laravel in 30 mins | Laravel Razorpay
    1 Integration of Razorpay with Laravel. In this tutorial, I have taught how to integrate payment gateway with laravel with mini-project. If...
  • Vue.js Render functions
        Vue.js Render functions Vue.js recommends us to use templates to build HTML. Here, we can use the render function as a closer-to-the-co...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (69)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • ▼  2026 (3)
    • ▼  07/26 - 08/02 (2)
      • A stormwater pond in Calgary appears filled with P...
      • Inside Kriti Sanon's duplex sea-facing penthouse w...
    • ►  06/28 - 07/05 (1)
  • ►  2025 (4)
    • ►  07/06 - 07/13 (2)
    • ►  06/29 - 07/06 (2)
  • ►  2024 (486)
    • ►  09/15 - 09/22 (30)
    • ►  09/08 - 09/15 (35)
    • ►  09/01 - 09/08 (35)
    • ►  08/11 - 08/18 (2)
    • ►  08/04 - 08/11 (33)
    • ►  07/28 - 08/04 (30)
    • ►  07/07 - 07/14 (11)
    • ►  06/30 - 07/07 (35)
    • ►  06/23 - 06/30 (5)
    • ►  06/02 - 06/09 (31)
    • ►  05/26 - 06/02 (20)
    • ►  05/05 - 05/12 (29)
    • ►  04/28 - 05/05 (26)
    • ►  04/07 - 04/14 (10)
    • ►  03/31 - 04/07 (34)
    • ►  03/24 - 03/31 (10)
    • ►  03/03 - 03/10 (35)
    • ►  02/25 - 03/03 (15)
    • ►  02/04 - 02/11 (22)
    • ►  01/28 - 02/04 (30)
    • ►  01/07 - 01/14 (8)
  • ►  2023 (484)
    • ►  12/31 - 01/07 (35)
    • ►  12/24 - 12/31 (10)
    • ►  12/03 - 12/10 (33)
    • ►  11/26 - 12/03 (20)
    • ►  11/05 - 11/12 (35)
    • ►  10/29 - 11/05 (20)
    • ►  10/22 - 10/29 (9)
    • ►  10/15 - 10/22 (7)
    • ►  10/08 - 10/15 (9)
    • ►  10/01 - 10/08 (10)
    • ►  09/24 - 10/01 (9)
    • ►  09/17 - 09/24 (9)
    • ►  09/10 - 09/17 (7)
    • ►  09/03 - 09/10 (9)
    • ►  08/27 - 09/03 (9)
    • ►  08/20 - 08/27 (8)
    • ►  08/13 - 08/20 (8)
    • ►  08/06 - 08/13 (8)
    • ►  07/30 - 08/06 (8)
    • ►  07/23 - 07/30 (7)
    • ►  07/16 - 07/23 (8)
    • ►  07/09 - 07/16 (7)
    • ►  07/02 - 07/09 (8)
    • ►  06/25 - 07/02 (7)
    • ►  06/18 - 06/25 (7)
    • ►  06/11 - 06/18 (7)
    • ►  06/04 - 06/11 (11)
    • ►  05/28 - 06/04 (7)
    • ►  05/21 - 05/28 (8)
    • ►  05/14 - 05/21 (11)
    • ►  05/07 - 05/14 (7)
    • ►  04/30 - 05/07 (7)
    • ►  04/23 - 04/30 (8)
    • ►  04/16 - 04/23 (9)
    • ►  04/09 - 04/16 (7)
    • ►  04/02 - 04/09 (4)
    • ►  03/26 - 04/02 (21)
    • ►  03/19 - 03/26 (2)
    • ►  03/12 - 03/19 (9)
    • ►  03/05 - 03/12 (26)
    • ►  02/26 - 03/05 (25)
    • ►  01/15 - 01/22 (7)
    • ►  01/08 - 01/15 (1)
  • ►  2022 (1037)
    • ►  12/11 - 12/18 (13)
    • ►  12/04 - 12/11 (1)
    • ►  11/27 - 12/04 (40)
    • ►  11/06 - 11/13 (1)
    • ►  10/16 - 10/23 (13)
    • ►  09/04 - 09/11 (5)
    • ►  08/21 - 08/28 (24)
    • ►  08/14 - 08/21 (24)
    • ►  07/03 - 07/10 (9)
    • ►  06/19 - 06/26 (3)
    • ►  05/29 - 06/05 (3)
    • ►  05/22 - 05/29 (3)
    • ►  05/15 - 05/22 (109)
    • ►  05/01 - 05/08 (7)
    • ►  04/24 - 05/01 (7)
    • ►  04/17 - 04/24 (64)
    • ►  04/10 - 04/17 (115)
    • ►  04/03 - 04/10 (73)
    • ►  03/27 - 04/03 (77)
    • ►  03/13 - 03/20 (2)
    • ►  03/06 - 03/13 (25)
    • ►  02/27 - 03/06 (18)
    • ►  02/20 - 02/27 (153)
    • ►  02/13 - 02/20 (187)
    • ►  01/30 - 02/06 (45)
    • ►  01/23 - 01/30 (15)
    • ►  01/16 - 01/23 (1)
  • ►  2021 (412)
    • ►  10/24 - 10/31 (2)
    • ►  07/25 - 08/01 (1)
    • ►  07/11 - 07/18 (10)
    • ►  06/13 - 06/20 (29)
    • ►  05/23 - 05/30 (1)
    • ►  05/02 - 05/09 (24)
    • ►  04/25 - 05/02 (24)
    • ►  04/18 - 04/25 (112)
    • ►  04/11 - 04/18 (1)
    • ►  04/04 - 04/11 (6)
    • ►  03/28 - 04/04 (86)
    • ►  03/21 - 03/28 (19)
    • ►  03/14 - 03/21 (2)
    • ►  03/07 - 03/14 (10)
    • ►  02/28 - 03/07 (1)
    • ►  02/21 - 02/28 (29)
    • ►  02/14 - 02/21 (13)
    • ►  02/07 - 02/14 (12)
    • ►  01/31 - 02/07 (6)
    • ►  01/17 - 01/24 (2)
    • ►  01/10 - 01/17 (8)
    • ►  01/03 - 01/10 (14)
  • ►  2020 (376)
    • ►  12/27 - 01/03 (37)
    • ►  12/20 - 12/27 (92)
    • ►  12/13 - 12/20 (29)
    • ►  12/06 - 12/13 (37)
    • ►  11/29 - 12/06 (4)
    • ►  11/15 - 11/22 (14)
    • ►  11/08 - 11/15 (8)
    • ►  11/01 - 11/08 (2)
    • ►  10/18 - 10/25 (14)
    • ►  10/11 - 10/18 (16)
    • ►  10/04 - 10/11 (10)
    • ►  09/20 - 09/27 (10)
    • ►  09/06 - 09/13 (19)
    • ►  08/30 - 09/06 (26)
    • ►  08/23 - 08/30 (4)
    • ►  08/16 - 08/23 (2)
    • ►  07/12 - 07/19 (48)
    • ►  05/17 - 05/24 (2)
    • ►  01/05 - 01/12 (2)
  • ►  2019 (74)
    • ►  07/07 - 07/14 (6)
    • ►  06/16 - 06/23 (6)
    • ►  02/10 - 02/17 (17)
    • ►  01/13 - 01/20 (37)
    • ►  01/06 - 01/13 (8)
  • ►  2018 (376)
    • ►  12/30 - 01/06 (24)
    • ►  12/16 - 12/23 (8)
    • ►  12/09 - 12/16 (98)
    • ►  12/02 - 12/09 (16)
    • ►  11/18 - 11/25 (36)
    • ►  11/04 - 11/11 (18)
    • ►  10/28 - 11/04 (10)
    • ►  10/21 - 10/28 (26)
    • ►  10/14 - 10/21 (52)
    • ►  10/07 - 10/14 (4)
    • ►  09/30 - 10/07 (2)
    • ►  09/23 - 09/30 (68)
    • ►  09/16 - 09/23 (4)
    • ►  09/09 - 09/16 (4)
    • ►  08/26 - 09/02 (6)

Data Publish News

Loading...

Al Jazeera – Breaking News, World News and Video from Al Jazeera

Loading...

Laravel News

Loading...

Copyright © CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda