hi, just wondering if anyone can see what i'm doing wrong here in my code? i'm trying to write a "view_video.php" script that takes a file name from the query string, and then inserts it into the code so the proper quicktime file will appear, but it's not working... here's the code:
<?php
$the_clip = "video/". $_GET['the_clip'] .".mov";
?>
<html>
<body bgcolor=#000000>
<center>
<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="<?php echo ($the_clip); ?>">
<param name="qtsrc" value="<?php echo ($the_clip); ?>">
<param name="autoplay" value="true">
<param name="loop" value="false">
<param name="controller" value="true">
<embed src="<?php echo ($the_clip); ?>" qtsrc="<?php echo ($the_clip); ?>" width="320" height="256" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/download">
</embed>
</object>
<br />
<strong><font face="verdana, arial, helvetica" size=2><a href="filmc.html">GO BACK</a></font></strong>
</center>
</body>
</html>
any help at all would be really appreciated. i got it to work once, messing around with it, and now it doesn't work again.. what do i do?
thanks!