Welcome Guest, Not a member yet? Register   Sign In
Can't show data table 'entries' of tutorial
#5

[eluser]mrfree[/eluser]
This is my code with blog.php

Code:
<?php  
class Blog extends Controller
  {
      function Blog()
      {
          
          parent::Controller();        
         //         $this->load->scaffolding('entries');
        // $this->load->helper('url');
         //$this->load->helper('form');
        
       }  
      function index()
      {
          $data['title']  ="My blog title";
          $data['heading']="My blog heading";
          $data['query']=$this->db->get('entries');
          $this->load->view('blog_view',$data);
         // echo 'Hello';
      }
  }
?>

and below is blog_view.php
Code:
<html>
<head>
<title><?=$title?></title>
</head>
<body>
  <h1>&lt;?=$heading?&gt;</h1>
  &lt;?php  foreach($query->result() as $row): ?&gt;
    <h3>&lt;?=$row->title?&gt;</h3>
    <p>&lt;?=$row->body?&gt;</p>
    <hr>
  &lt;?php endforeach;?&gt;
&lt;/body&gt;
&lt;/html&gt;


Messages In This Thread
Can't show data table 'entries' of tutorial - by El Forum - 10-04-2009, 09:49 PM
Can't show data table 'entries' of tutorial - by El Forum - 10-07-2009, 01:46 AM
Can't show data table 'entries' of tutorial - by El Forum - 10-07-2009, 04:07 AM
Can't show data table 'entries' of tutorial - by El Forum - 10-16-2009, 12:27 AM
Can't show data table 'entries' of tutorial - by El Forum - 10-17-2009, 03:22 AM
Can't show data table 'entries' of tutorial - by El Forum - 10-18-2009, 10:34 PM
Can't show data table 'entries' of tutorial - by El Forum - 10-19-2009, 01:12 AM
Can't show data table 'entries' of tutorial - by El Forum - 10-21-2009, 11:31 PM
Can't show data table 'entries' of tutorial - by El Forum - 10-21-2009, 11:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB