Welcome Guest, Not a member yet? Register   Sign In
errror Result()
#3

[eluser]Michael Wales[/eluser]
Here's how I would write this (not using a Model, but you could):

Controller
Code:
function GetGallerySpot() {
  $query = $this->db->getwhere('gallery', array('id_spot'=>$this->uri->segment(3)));
  if ($query->num_rows() > 0) {
    $this->data->images = $query->result();
  } else {
    $this->data->images = FALSE;
  }
  $this->load->view('spot_side', $this->data);
}

View:
Code:
<div id="wrap_contx">
    <div id="sidebar">
        <div id="t_in">Photos of This Spot</div>
        <div id="div_details">
    Add Photos
    </div
&lt;?php foreach($images as $row):?&gt;

<img src="&lt;?=$row->thumb;?&gt;">


  &lt;?php endforeach;?&gt;
  </div>
  </div>


Messages In This Thread
errror Result() - by El Forum - 10-22-2007, 01:24 PM
errror Result() - by El Forum - 10-22-2007, 01:27 PM
errror Result() - by El Forum - 10-22-2007, 01:30 PM
errror Result() - by El Forum - 10-22-2007, 01:44 PM
errror Result() - by El Forum - 10-22-2007, 01:52 PM
errror Result() - by El Forum - 10-22-2007, 03:39 PM
errror Result() - by El Forum - 10-22-2007, 04:16 PM
errror Result() - by El Forum - 10-22-2007, 06:55 PM
errror Result() - by El Forum - 10-22-2007, 07:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB