Jump to content

Embed in php


qaq0

Recommended Posts

I was wondering if you could embed something like this in php:
[code]<object width="300" height="80"><param name="movie" value="http://media.imeem.com/m/aDM9gnYGM_/aus=false/"></param><param name="wmmode" value="transparent"></param><embed src="http://media.imeem.com/m/aDM9gnYGM_/aus=false/" type="application/x-shockwave-flash" width="300" height="80" wmode="transparent"></embed></object>[/code]
Link to comment
https://forums.phpfreaks.com/topic/28462-embed-in-php/
Share on other sites

[code]<?php
echo "<object width='300' height='80'>
<param name='movie' value='http://media.imeem.com/m/aDM9gnYGM_/aus=false/'></param>
<param name='wmmode' value='transparent'></param>
<embed src='http://media.imeem.com/m/aDM9gnYGM_/aus=false/' type='application/x-shockwave-flash' width='300' height='80' wmode='transparent'></embed>
</object>";
?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/28462-embed-in-php/#findComment-130232
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.