Welcome Guest, Not a member yet? Register   Sign In
Getting data from table in one line?
#4

[eluser]Flemming[/eluser]
The way I would do it is write a helper.

Create a new helper in 'application > helpers' called for example, general_helper.php :

Code:
<?php
// general_helper.php
function get_body($id)
{
  // here you need to use the CI super object like so:
  $CI = &get;_instance();

  // now you can access the database via $CI instead of $this, eg.
  $CI->db->select('BODY')->from('MY_TABLE')->where('ID', $id);
  $query = $CI->db->get();
  $result = $query->row();
  $body = $result->BODY;
  return $body
}

Include the new helper in the constructor of your controller:

Code:
function __construct()
{
  $this->load->helper('general_helper');
}

Now in your view you can call the helper function like this:

Code:
<h1>Hello World</h1>
<p>&lt;?php echo get_body($id_you_are_passing_in)?&gt;</p>


Messages In This Thread
Getting data from table in one line? - by El Forum - 01-11-2010, 06:56 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 07:18 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 07:23 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 07:35 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 07:38 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 07:56 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:01 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:13 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:21 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:23 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:23 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:26 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:27 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:29 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:36 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:39 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:46 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:51 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:53 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:55 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:55 AM
Getting data from table in one line? - by El Forum - 01-11-2010, 08:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB