Page 1 of 1

flash movie in php without borders :s

Posted: Wed Mar 29, 2006 7:51 am
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 ;)

Posted: Wed Mar 29, 2006 12:37 pm
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>