|
-
Sep 25th, 2007, 03:46 AM
#1
Thread Starter
Fanatic Member
how to make alink for a flash file using php
hai friends,
i need to make a URL link for a flash file.i used code was
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" >
<param name="movie" value="../advertisment/<?echo "conadvsmall".$row[0].$row['photo'];?>" />
<param name="quality" value="high" />
<embed src="../advertisment/<?echo "conadvsmall".$row[0].$row['photo'];?>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="274" height="230"></embed>
i tried with <a href> tag but its not working,try to do that...otr tell me some solution plz...
Visual Studio.net 2010
If this post is useful, rate it

-
Sep 26th, 2007, 04:56 PM
#2
Re: how to make alink for a flash file using php
try this:
PHP Code:
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" >
<param name="movie" value="../advertisment/<?echo "conadvsmall".$row[0].$row['photo'];?>" />
<param name="quality" value="high" />
<embed src="../advertisment/<?PHP echo "conadvsmall" . $row[0] . $row['photo']; ?>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="274" height="230"></embed>
remember that the short tags are no longer used
My usual boring signature: Something
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|