S Swedeman New Member โ 20 โ Impact 0 Feb 27, 2004 938 views 3 replies #1 How do I get a video file from a folder called member. I have a simple upload scirt that place the video files in the folder member, but how do I get them to a page called membermovies.php ???
How do I get a video file from a folder called member. I have a simple upload scirt that place the video files in the folder member, but how do I get them to a page called membermovies.php ???
painperdu Established Member โ 20 โ Impact 31 Mar 2, 2004 #2 You are trying to list movie files from a directory to a web page? You would need PHP to open the directory, read the file names into an array, then loop through this array to print each one to the page.
You are trying to list movie files from a directory to a web page? You would need PHP to open the directory, read the file names into an array, then loop through this array to print each one to the page.
Anthony VIP Member VIP โ 20 โ Impact 15 Mar 3, 2004 #3 Originally posted by painperdu You are trying to list movie files from a directory to a web page? You would need PHP to open the directory, read the file names into an array, then loop through this array to print each one to the page. Click to expand... That seems like the most straightforward way to me.
Originally posted by painperdu You are trying to list movie files from a directory to a web page? You would need PHP to open the directory, read the file names into an array, then loop through this array to print each one to the page. Click to expand... That seems like the most straightforward way to me.
S Swedeman New Member โ 20 โ Impact 0 Mar 4, 2004 #4 Thanks guys but I have solved it now... well. Maybe get back if I get stuck again...