What i want is to embed different movies (wmv, mov, swf etc) with different codecs in just one static page. Instead of creating 4-5 pages each one specific to the video player plugin. I want to creat just one page that dynamically picks one part of the code. Let me explain
static page media.php
<if url = media.php?wmv>
....... code for WMV player........
</if>
<if url = media.php?mov>
....... code for Quicktime player........
</if>
All this will have to be done with php, and I just pass a variable to it which will select which player to embed in it.
makes sense
