| | Need help to include this, i am trying to include this folder http://www.koddinn.com/shoutbox_v1.2/shoutbox.php to this http://www.koddinn.com/test.php the folder include many files http://www.koddinn.com/shoutbox_v1.2 i want to include all the files in a certain directory. do i use reddir for this, how can i do this CODE echo "<PRE>"; $handle = opendir("."); while($file = readdir($handle)) { if(is_dir($file)) echo "$file/\n"; else echo "$file\n"; } closedir($handle); echo "</PRE>"; do i have to loop to include each file. ?? |

