Welcome Guest, Not a member yet? Register   Sign In
printing an invoice using CI
#2

[eluser]rwestergren[/eluser]
This isn't very specific, but you'll just need to pass your query results to the view with something like this:
Code:
//Get query results
$data['result'] = $this->SomeModel->someFunction();

//Pass to view
$this->load->view('someView', $data);

Display the results in view:
Code:
echo $result['column'];

Format the view however you'd like.


Messages In This Thread
printing an invoice using CI - by El Forum - 08-05-2010, 06:15 AM
printing an invoice using CI - by El Forum - 08-05-2010, 08:05 AM
printing an invoice using CI - by El Forum - 08-05-2010, 09:09 AM
printing an invoice using CI - by El Forum - 08-05-2010, 09:25 AM
printing an invoice using CI - by El Forum - 08-05-2010, 09:38 AM
printing an invoice using CI - by El Forum - 08-05-2010, 09:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB