Jump to content

[SOLVED] pictures not showing


kellz

Recommended Posts

hey..

 

I only wanted to make pictures appear on the page so i did this and it kinda made sense at the time:

 

if ($dir_list = opendir('pics')) {
    while(($filename = readdir($dir_list)) !== false) {
        print '<img src="' . $filename . '" width="32" height="32" />';
    }
    closedir($dir_list);
}

 

could you tell me why it's not working but like don't give me the right code, i want to do that part myself^^ thx!

Link to comment
https://forums.phpfreaks.com/topic/76521-solved-pictures-not-showing/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.