Welcome Guest, Not a member yet? Register   Sign In
Another pagination issue
#2

[eluser]gibbo1715[/eluser]
Heres my view

Code:
<html>
<head>
<link rel="stylesheet" type="text/css"
      href="<?php echo "$base/$css"?>">
</head>
<body>
<div id="header">
    &lt;? $this->load->view('books_header'); ?&gt;
</div>
<div id="menu">
    &lt;?     $this->load->view('books_menu'); ?&gt;
</div>
    &lt;? echo heading('List of Books',3); ?&gt;
    

&lt;?php echo $pagination; ?&gt;

    
<table border="1">
  <tr>
    <th>ID</th>
    <th>Title</th>    
    <th>Author</th>    
    <th>Year</th>
    <th colspan="2" ALIGN="center">Action</th>        
  </tr>

  
  
  &lt;?php

//Needs to be declared in the global variables
$edit_image = $base;
$edit_image .= 'table-images/edit.png';

$delete_image = $base;
$delete_image .= 'table-images/Thumbs_down.png';

//**********************************************

foreach($query as $row){
  echo "<tr>";
    echo "<td width=4%> Policy:". $row->id ."</td>";
    echo "<td width=50%>". $row->title ."</td>";
    echo "<td width=20%>". $row->author ."</td>";
    echo "<td width=5%>". $row->year ."</td>";
    echo "<td ALIGN=center width=2%>". anchor('books/input/'.$row->id,'<IMG SRC=' .$edit_image .' ALT="Edit Entry"> ') ."</td>";
    echo "<td ALIGN=center width=2%>". anchor('books/del/'.$row->id,'<IMG SRC=' .$delete_image .' ALT="Delete Entry"> ') ."</td>";        
    echo "</tr>";    
}

?&gt;

</table>

<div id="footer">
&lt;? $this->load->view('books_footer'); ?&gt;
</div>

&lt;/body&gt;
&lt;/html&gt;


Messages In This Thread
Another pagination issue - by El Forum - 12-14-2009, 06:24 AM
Another pagination issue - by El Forum - 12-14-2009, 06:52 AM
Another pagination issue - by El Forum - 12-14-2009, 08:01 AM
Another pagination issue - by El Forum - 12-14-2009, 08:44 AM
Another pagination issue - by El Forum - 12-14-2009, 08:56 AM
Another pagination issue - by El Forum - 12-14-2009, 08:59 AM
Another pagination issue - by El Forum - 12-14-2009, 09:01 AM
Another pagination issue - by El Forum - 12-14-2009, 09:37 AM
Another pagination issue - by El Forum - 12-14-2009, 09:45 AM
Another pagination issue - by El Forum - 12-14-2009, 09:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB