Welcome Guest, Not a member yet? Register   Sign In
Ordering DB results by date
#5

[eluser]patrick-vibes[/eluser]
Cant seem to get that working, I get an error in the browser.

Basically I am working with the basic code I created when I did the Blog tutorial.

So for my controller:
Code:
<?php

    class Blog extends Controller {
        
        function Blog()
        {
            parent::Controller();
            
            $this->load->scaffolding('portfolio');
            $this->load->helper('url');
        }
        
        function index()
        {
            $data['title'] = "Portfolio Vibes";
            $data['heading'] = "Recent Vibes";
            $data['query'] = $this->db->get('portfolio' , 10);
            $this->load->view('blog_view' , $data);
        }
    
}

?>

and for my view I have:
Code:
<?php
$this->load->view('header');
?>

<body>

<?php
$this->load->view('masthead');
?>

<h2>&lt;?php echo $heading; ?&gt;</h2>

&lt;!--Start Pieces--&gt;

&lt;?php foreach($query->result() as $row): ?&gt;
<div class="block">
<img >image ?&gt;" title="&lt;?php echo $row->title ?&gt;" class="Tips2" />
<h3>&lt;?php echo $row->title ?&gt;</h3>
<p>&lt;?php echo $row->brief ?&gt;</p>
<p>&lt;?php echo $row->technologies ?&gt;</p>
<p><a >link ?&gt;" rel="external" title="&lt;?php echo $row->link ?&gt;">Click here to view the project</a></p>
</div>
&lt;?php endforeach; ?&gt;

&lt;!--Pieces End--&gt;


&lt;?php
$this->load->view('footer');
?&gt;


Messages In This Thread
Ordering DB results by date - by El Forum - 07-31-2008, 10:37 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:40 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:54 AM
Ordering DB results by date - by El Forum - 07-31-2008, 10:58 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:07 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:14 AM
Ordering DB results by date - by El Forum - 07-31-2008, 11:26 AM
Ordering DB results by date - by El Forum - 07-31-2008, 12:10 PM
Ordering DB results by date - by El Forum - 08-01-2008, 12:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB