Cant seem to get flash in my php

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

Locked
domminn
Forum Newbie
Posts: 2
Joined: Wed Jul 19, 2006 12:45 am

Cant seem to get flash in my php

Post by domminn »

Pimptastic | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Code: Select all

echo "<table class='table_layout_main' style='width:{$config['gallery_width']};padding-top:0' cellpadding='0' cellspacing='0'>
<tr><td width='100%' colspan='3'><a href='index.php'><img src='skins/techno/header.jpg' alt='Drunk in the BVI' border='0' id='img_tight' /></a>
</td></tr>";

I want to exchange

Code: Select all

<img src='skins/techno/header.jpg' alt='Drunk in the BVI' border='0' id='img_tight' />
to a flash movie 930 x 135, but all i do fails... i need help


Pimptastic | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

What do you mean 'fails'?
User avatar
aerodromoi
Forum Contributor
Posts: 230
Joined: Sun May 07, 2006 5:21 am

Re: Cant seem to get flash in my php

Post by aerodromoi »

domminn wrote:echo "<table class='table_layout_main' style='width:{$config['gallery_width']};padding-top:0' cellpadding='0' cellspacing='0'>
<tr><td width='100%' colspan='3'><a href='index.php'><img src='skins/techno/header.jpg' alt='Drunk in the BVI' border='0' id='img_tight' /></a>
</td></tr>";


I want to exchange

<img src='skins/techno/header.jpg' alt='Drunk in the BVI' border='0' id='img_tight' />

to a flash movie 930 x 135, but all i do fails... i need help
You'll need (at least) an object tag to display flash movies:

Code: Select all

<object type="application/x-shockwave-flash" data="movie.swf" width="930" height="135">
  <param name="movie" value="movie.swf" />
  No flash player installed!
</object>
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post by JayBird »

[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:3. Do not make multiple, identical posts. This is viewed as spam and will be deleted.
Image
Locked