Page 1 of 1

Cant seem to get flash in my php

Posted: Wed Jul 19, 2006 12:55 am
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]

Posted: Wed Jul 19, 2006 4:35 pm
by RobertGonzalez
What do you mean 'fails'?

Re: Cant seem to get flash in my php

Posted: Wed Jul 19, 2006 9:29 pm
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>

Posted: Thu Jul 20, 2006 2:57 am
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