How to execute mysql query inside codeigniter helper

In this tutorial i will show you how to execute mysql query inside codeigniter helper.
If you want to use database inside your helpers, you need access to the CI super object. In your function

how to execute mysql query inside codeigniter helper

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
function helper_funtion()
{
	$ci =& get_instance();
	$ci->load->database();
	$sql = "SELECT * FROM `table_name` ORDER BY `id` DESC ";
	$q = $ci->db->query($sql);
	if($q->num_rows() > 0)
	{
		foreach($q->result() as $data)
		{
			echo '<p>'.$data->field_name.'</p>';
		}
	}
}

How to execute or call heplper function

You can helper method inside your controller and view.

<?php echo helper_funtion(); ?>

Where can you find helper

Helpers are typically stored in your system/helpers, or application/helpers directory. CodeIgniter will look first in your application/helpers directory.

How to load helper

$this->load->helper('helper_name');

Tags
Call CodeIgniter MySQL query inside a helper file, Call CodeIgniter MySQL query inside a helper file, Query Helper Functions, Query Helper Methods, Using the database from inside a helper, query in helper codeigniter, codeigniter last query, how to call helper function in codeigniter, how to call helper function in codeigniter view, how to run MySQL query inside a helper, how to execute MySQL query inside a helper

About Author

My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.

Sign up for weekly update

Milkshake is almost ready. If you're interested in testing it out, then sign up below to get exclusive access.