[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 08-22-2007, 07:43 PM   #1 (permalink)
NamePros Member
 
Join Date: Dec 2006
Posts: 126
0.00 NP$ (Donate)

good_looking is an unknown quantity at this point


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.
good_looking is offline  
Old 08-23-2007, 01:01 AM   #2 (permalink)
Danltn.com
 
Daniel's Avatar
 
Join Date: May 2007
Location: Danltn.com / Nottingham, UK
Posts: 1,201
13.51 NP$ (Donate)

Daniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond reputeDaniel has a reputation beyond repute

Ethan Allen Fund Ethan Allen Fund
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>
For YT videos, change iFMiT4hJ17I to your own video ID. Instructions are on the site though...
Daniel is offline  
Old 08-23-2007, 01:54 PM   #3 (permalink)
NamePros Member
 
Join Date: Dec 2006
Posts: 126
0.00 NP$ (Donate)

good_looking is an unknown quantity at this point


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>
Here is my php view page:
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'];
Here is my html page:
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>
When I view the html page, i see nothing (blank page); but when I view the source of html page i see the link which users input has been replace with php code "<?=videourl?>". Do you know what happens ?
good_looking is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 03:35 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85