Problem loading flash..

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
johniem
Forum Commoner
Posts: 29
Joined: Mon Jul 20, 2009 8:58 am

Problem loading flash..

Post by johniem »

I don't know if here is the proper section to post this but i hope there is someone out there that can help me...
I'm trying to load a flash movie to my site from my subdomain. The idea is that i store the video.fls to mysubdomain.mydomain.com and then im using this code

Code: Select all

 
<object id="player1" type="application/x-shockwave-flash" data="flash/player/player_flv_maxi.swf" width="645" height="410"> 
  <param name="movie" value="flash/player/player_flv_maxi.swf" /> 
  <param name="allowFullScreen" value="true" /> 
  <param name="FlashVars" value="configxml=flash/player/video_MOV010.xml" /> 
  <param name="flv" value="<?=$videoPath?>" />
</object>       
 
to load it on my site (http://www.mydomain.com) where $videoPath is the full url to my subdomain where the video is.

the problem is that it's not working and the workarounds that i found on the net not working either. I don't know if I'm doing something wong but I'm at deadend and I can't continue my work untill I solve this..
Any help will be appreciated..

Thanks in advance..
User avatar
susrisha
Forum Contributor
Posts: 439
Joined: Thu Aug 07, 2008 11:43 pm
Location: Hyderabad India

Re: Problem loading flash..

Post by susrisha »

Code: Select all

 
 
  <param name="flv" value="<?=$videoPath?>" />
//May be its the short tags that are creating this error
 
 
Post Reply