Welcome Guest, Not a member yet? Register   Sign In
Total noob lookin' for some help...
#1

[eluser]BobbyB[/eluser]
Hi,
I am all new to this framework(to php/frameworks all together) and looked at some beginner tutorials like the one at capsizedesigns but am having a hard time wrapping my head around it.
Even the installation was kind of tricky.
But then I was finally ready to go and played around with some code I found in the Wiki:

http://codeigniter.com/wiki/Listfiles/
What I am trying to do is list the files of a directory on the welcome page.

I changed the welcome.php to:

Code:
class Welcome extends Controller {

    function Welcome()
    {
        parent::Controller();    
    }
    
    function index()
    {
    $this->load->library('listfiles', array('php','jpg', 'jpeg', 'csv'));
        $data['files'] = $this->listfiles->getFiles('./');
    
    
    $this->load->view('welcome_message',$data);
    }
}

And in the welcome_message.php I tried following:

Code:
<?php echo $files ?>

I also added the code to -> application/libraries/Listfiles.php.
But of course it wont work.

Could someone please give me a hint/some code how to solve this?

Thanks in advance.
Cheers


Messages In This Thread
Total noob lookin' for some help... - by El Forum - 11-20-2008, 09:50 AM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 12:10 PM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 12:33 PM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 12:35 PM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 01:20 PM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 02:29 PM
Total noob lookin' for some help... - by El Forum - 11-20-2008, 02:36 PM
Total noob lookin' for some help... - by El Forum - 11-21-2008, 03:51 AM
Total noob lookin' for some help... - by El Forum - 11-21-2008, 09:14 AM
Total noob lookin' for some help... - by El Forum - 11-22-2008, 12:52 PM
Total noob lookin' for some help... - by El Forum - 11-22-2008, 01:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB