Results 1 to 2 of 2

Thread: how to make alink for a flash file using php

  1. #1

    Thread Starter
    Fanatic Member vijy's Avatar
    Join Date
    May 2007
    Location
    India
    Posts
    548

    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


  2. #2
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    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
  •  



Click Here to Expand Forum to Full Width