PHP Classes

How to get Vedio from Youtube URL

Recommend this page to a friend!

      Top level forums  >  PHP Specialists  >  General  >  How to get Vedio from Youtube URL  
Subject:How to get Vedio from Youtube URL
Summary:How to get Vedio from Youtube URL
Messages:2
Author:aflaton
Date:2010-10-28 07:01:17
Update:2011-02-27 02:04:18
 

  1. How to get Vedio from Youtube URL   Reply   Report abuse  
Picture of aflaton aflaton - 2011-02-24 08:47:24
Hey All friends..

I am new Here.. I want to get help... in:
getting vedio as embad from youtube by below method I try but fields..

1. I create an html form with 1 input name as url if user enter the youtube url in it and hit submit the url should retun in index page as embad vedio.. but still I am fialed to do...

please any one can direct to me to place or advise me in coding...

my php code" (Process.php)
[code]
<?php
$youtubeurl= $_POST["url"];
$width="400";
$height="400";
?>
[/code]
Form.html
[code]
<form name="youtube" method="post" action="process.php">
<input name="url" type="text" />
<input name="submit type="submit" value="add" />
</form>
[/code]
Embad place in form.html after adding url.
[code]
<object width="<?php echo $width; ?>" height="<?php echo $height; ?>" data="<?php echo $youtubeurl; ?>" type="application/x-shockwave-flash">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="wmode" value="transparent" />
<param name="movie" value="<?php echo $youtubeurl; ?>" />
<embed src="<?php echo $youtubeurl; ?>" type="application/x-shockwave-flash" width="<?php echo $width; ?>" height="<?php echo $height; ?>" allowscriptaccess="never" allownetworking="internal" wmode="transparent" />
</object>
[/code]

There is 1 reply in this thread, which is not being displayed.
Browsing this forum thread replies is available only to premium subscribers.


Go to the premium subscriptions page to learn how to become a premium subscriber and have full access to this forum.