Jump to content

ferdi9999

Members
  • Posts

    2
  • Joined

  • Last visited

About ferdi9999

  • Birthday 01/20/1985

Previous Fields

  • Languages
    HTML5, PHP

ferdi9999's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hello people, I'm new to buidling websites. I already have some books about HTML5 and PHP. Now i want to learn more about Javascript. There are a lot of books about that subject but which one is the best for completly new users? I don't have any experience in scripting languages. Books needs to be in English or Dutch.Thanks a lot
  2. Hello all, I'm not sure if im correct here but i have the following problem. I want to have a video site where there are different amounts of video files. I want to have a drop down where the titels are automaticly added (according to the files in the folder). When you select a file name, i want then to play the file. Im using HTML5 video so for that i need to adjust the src code htrought the dropdown list. I have found a piece of code that will look through the folder to see the files and make a list out of it. But instead of a list i want to have a dropdown of it. Anny1 any ideas about it? Here is my code for the list of items in the folder: <?php if ($handle = opendir('video/')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $thelist .= '<LI><a href="'.$file.'">'.$file.'</a>'; } } closedir($handle); }?><P>List of files:</p><UL><P><?=$thelist?></p></UL>
×
×
  • Create New...