I'm currently working on a system for my site that will reward users based on how many minutes of video they have watched. The video player looks like this in HTML:
<div id="VideoBox">
<video id="Video" src="placeholder" type="video/mp4" controls autoplay>
</video>
</div>
the src="placeholder"
is later reassigned the value of a PHP variable. I'm looking for a way to do this in JS/PHP, preferably PHP but JS is also fine.