Welcome Guest, Not a member yet? Register   Sign In
small blog help needed passing data
#2

[eluser]echo sara[/eluser]
hey i figured it out it was rows not row. Now i am able to see the title field data in the view. I want to show a second field as well how would i include that i tried this but i dont think its right.

Model
Code:
function sendentry($title, $comment) {
        
        $query_str = "INSERT INTO entries (title, body) Value ('{$title}', '{$comment}')";

        $this->db->query($query_str, array($title, $comment));
        
        $data_retrive = $this->db->get('entries');
        if ($data_retrive->num_rows()> 0) {
            
            foreach($data_retrive->result() as $row){
                
                $data[] = row;
                echo $row->title;
                echo $row->body;          ********--------> this is the field i want to add from the database
                
            }
            return $data;
        }
                        
    }

doesnt work tho. any idea?


Messages In This Thread
small blog help needed passing data - by El Forum - 08-11-2011, 05:06 PM
small blog help needed passing data - by El Forum - 08-11-2011, 06:30 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:58 AM
small blog help needed passing data - by El Forum - 08-12-2011, 08:06 AM
small blog help needed passing data - by El Forum - 08-12-2011, 01:30 PM
small blog help needed passing data - by El Forum - 08-12-2011, 03:26 PM
small blog help needed passing data - by El Forum - 08-12-2011, 03:31 PM
small blog help needed passing data - by El Forum - 08-12-2011, 04:02 PM
small blog help needed passing data - by El Forum - 08-12-2011, 04:39 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:04 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:15 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:31 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:42 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:46 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:48 PM
small blog help needed passing data - by El Forum - 08-12-2011, 06:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB