Welcome Guest, Not a member yet? Register   Sign In
Attempt 2 understand models and controllers
#1

[eluser]ns8814[/eluser]
I attempted to post this question earlier but for some reason it cut it off half way through so I am trying again. I'm new to codeigniter and php and MVC so I am just trying to figure out where I should put a piece of code like this

Code:
<?php
function filenamefrompath($input){
$filenameonly=basename($input);
echo $filenameonly;
}
$imagesize='width="553" height="300"';
$customerid = $this->uri->segment(3);
$projectimagepath= base_url('images/estimates/'.$customerid);
  
$directory = $_SERVER['DOCUMENT_ROOT'].'codeignitor1/images/estimates/'."$customerid";
  
  foreach (glob("$directory".'/'."*.jpg") as $filename){
  
   echo "<img title="#htmlcaption">';
  }
  
  

?&gt;

I have it In the view because it was easier to debug and get working. I don't believe it belongs in the view but putting it inside a model doesn't seem right either. and its not a controller. So it go in a controller I'm not sure. Just trying to get everything figured out the right way before I develop bad habits. Basically it is pulling checking a folder for images and using the images it finds to create a photo gallery. I would appreciate a shove in the right direction.


Messages In This Thread
Attempt 2 understand models and controllers - by El Forum - 05-21-2012, 12:07 PM
Attempt 2 understand models and controllers - by El Forum - 05-21-2012, 08:04 PM
Attempt 2 understand models and controllers - by El Forum - 05-22-2012, 12:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB