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

[eluser]mitnick[/eluser]
I created a new helper file called snippet_helper.php

Inside it i have the following.

Code:
<?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('snippets')->where('ID', $id);
  $query = $CI->db->get();
  $result = $query->row();
  $body = $result->body;
  return $body
}

And added

Code:
$this->load->helper('snippet');

to my admin.php controller.

Can you see anything wrong with this?. I have a table called "snippets" in the DB with the structure of ID,Title,Body.


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