flash movie in php without borders :s

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
User avatar
potato
Forum Contributor
Posts: 192
Joined: Tue Mar 16, 2004 8:30 am
Location: my lovely trailer, next to the big tree

flash movie in php without borders :s

Post by potato »

hey,

i want to include a flash movie or a java applet in a php file.
But the problem is that i dont want any borders around the movie or applet, because i want to use it as content in a iframe.
Here are the urls:

the content of the iframe:
http://www.bevibed.be/e107_handlers/new ... iframe.php
the place where you can view the iframe: (the small newsticker above)
http://bevibed.be/tutorials

i tried a table with celspaccing 0 and cellpadding 0, but that dont worked.

Any help would be great ;)
User avatar
ed209
Forum Contributor
Posts: 153
Joined: Thu May 12, 2005 5:06 am
Location: UK

Post by ed209 »

not really sure what that has to do with PHP, seems like more of an HTML/CSS problem to me. I'm not sure which tags you are using, if you're using <embed> then as a complete guess, the following might work:

Code: Select all

<embed style="border:0; " />
or if you're using <object>

Code: Select all

<object border="0" ></object>
Post Reply