[eluser]wilfred[/eluser]
i meant like this, In the code below when I query form the database hippo and want to display results in a form layout. How do i create that form from the form helper?
<?php
class Blog extends Controller{
function Index()
{
$data[‘title’] = “party zone”;
$data[heading] = “lets rock and keep it rocking”;
$this->load->view(‘blogview’,$data);
$this->load->database();
$sql = “SELECT * FROM hippo WHERE manufacturer = ?”;
$this->db->query($sql, array(‘EABL’));
}
}