This is my html
<div align="center" class="embed-responsive embed-responsive-16by9" width="640" height="480">
<video autoplay loop class="embed-responsive-item" controls>
<source src="/projects/moviestream/php/stream.php">
</video>
</div>
and my stream.php
// class definition of video_stream
$stream = new VideoStream($video_link);
$stream->start();
My question is how to pass the variable $video_link from my html to the php page so it streams the correct video?