Results 1 to 3 of 3
-
5th Aug 2011, 08:37 AM #1OPMember
Embedding Youtube Videos In PHP
I have to make a simple video embed page and want to know the coding for it.
i need the page url to be www.mysite.com/yt.php?v=VIDEO_ID so that i can embed videos freely without making new html page every time.cyclone Reviewed by cyclone on . Embedding Youtube Videos In PHP I have to make a simple video embed page and want to know the coding for it. i need the page url to be www.mysite.com/yt.php?v=VIDEO_ID so that i can embed videos freely without making new html page every time. Rating: 5
-
5th Aug 2011, 10:17 AM #2Respected MemberWebsite's:
DL4Everything.com Soft2050.inHere you go:
PHP Code:<?php if (isset($_GET['v'])) $videoid = $_GET['v']; ?>
<object width="425" height="344">
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/<?php echo $videoid; ?>" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed>
</object>
Example would be:
Or
-
5th Aug 2011, 11:03 AM #3OPMember
Thanks
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
KWWHunction Youtube videos
By Phozon in forum General DiscussionReplies: 5Last Post: 31st Mar 2012, 09:36 PM -
Download Youtube Videos!!
By foxman in forum Useful SitesReplies: 5Last Post: 27th Dec 2011, 06:03 PM -
How to Watch videos deleted from youtube??
By bulls in forum General DiscussionReplies: 4Last Post: 14th Jun 2011, 02:55 PM -
[Hiring] Add 100 Youtube videos
By juordis in forum Completed TransactionsReplies: 12Last Post: 24th May 2010, 03:54 PM -
currently I can not access youtube videos?
By Tigger in forum General DiscussionReplies: 3Last Post: 28th May 2009, 10:59 PM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...