Playing multiple videos on the same player using html and php -
i have code playing multiple videos in single folder don't know error is page1.php <html> <body> <head> <title>video tests</title> </head> <h5>video list: </h5> <ul> <?php $filelist = scandir("videolibrary"); foreach($filelist $key=>$video){ if($key >1){ echo '<li><a href="page2.php?video='.$key.'" >'.$video.'</a </li>'; } } ?> </ul> </br> </body> </html> page2.php <html> <body> <?php $current_video = $_get['video']; $filelist = scandir("videolibrary"); foreach($filelist $key=>$video){ if($key >1){ if($key==$current_video){ $current_video_src = $video; $next_video = $key+1; $previous_video = $key-1; } } } ?> <center> <video id="myvideo" width="720" height="480"