| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Dec 2006
Posts: 126
![]() | Embed Videos ( Such as: Youtube, Googlevideo...) On PHP Site ? Hi Everyone, Im new to php scripting. Im trying to create a website that can embed movies in php site from youtube or googlevideo, but it seem doesn't work. Can anyone here show me how to write the code to embed videos into my site. Thanks in advance.
__________________ Free Desktop Wallpaper, Movies, Music |
| |
| | #2 (permalink) |
| Danltn.com Join Date: May 2007 Location: Danltn.com / Nottingham, UK
Posts: 1,201
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Code: <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/iFMiT4hJ17I"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/iFMiT4hJ17I" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
__________________ |
| |
| | THREAD STARTER #3 (permalink) |
| NamePros Member Join Date: Dec 2006
Posts: 126
![]() | Thanks for quick reply. I have tried this code before but it doesn't work. Here is the user input page code: Code: <tr>
<td align=right><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
Post a Video:</font></td>
<td><input type="text" name="title2" size="30" style="width:98%"></td>
<tr>
<td align=right valign=top>URL:</td>
<td><input type="text" name="url2" size="40" style="width:98%" value="" /></td>
</tr> Code: //get the item details $t1 = "select * from dd_items where ItemID = '$_GET[ID]' "; $s1 = mysql_query($t1) or die(mysql_error()); $m1 = mysql_fetch_array($s1); //URL is the name of my database column for the link which user have inputed in previous page $videourl = $m1['URL']; Code: <tr> <td align="center"><object width="425" height="350"><param name="movie" value="<?=$videourl?>"></param><param name="wmode" value="transparent"></param><embed src="<?=$videourl?>" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></td> </tr>
__________________ Free Desktop Wallpaper, Movies, Music |
| |