Ask for script or somthing like that

how i can make like that

http://rapidrelease.info/youtube.php?id=[COLOR=“#FF0000”]7KCUpeh7DKk[/COLOR]

this rapid from youtube just write code youtube

and u can open eny vedio on youtube

You should be able to grab a list of your own videos using the YouTube API, then either show links to each one, or create a gallery of your own videos.

The code sample are usually in PHP anyway.

no i mean

http://rapidrelease.info/youtube.php?id=7KCUpeh7DKk

i can open eny vedio on youtube just change 7KCUpeh7DKk

$var = "7KCUpeh7DKk";

// use string concatenation with single quotes

echo '<a href="http://rapidrelease.info/youtube.php?id=' . $var . '" >link</a>';

// OR, if you prefer
// use variable expansion inside double quotes

echo "<a href='http://rapidrelease.info/youtube.php?id=$var' >link</a>" ;



there are others … look at heredoc syntax, or alternative PHP syntax


<?php
$var = "7KCUpeh7DKk";
?>

<html>
</body>
//some html

<a href="http://rapidrelease.info/youtube.php?id=<?php  echo $var?>">link</a>

// more html

</body>
</html>


i wanna make my own site like that

it’s rapid youtube code to my site

example

http://rapidrelease.info/youtube.php?id=7KCUpeh7DKk
http://rapidrelease.info/youtube.php?id=URFW9EDeeCw
http://rapidrelease.info/youtube.php?id=3CBeIc2sqHQ

http://www.youtube.com/watch?v=7KCUpeh7DKk
http://www.youtube.com/watch?v=URFW9EDeeCw
http://www.youtube.com/watch?v=3CBeIc2sqHQ

just change eny code from youtube like this 3CBeIc2sqHQ
and but at http://rapidrelease.info/youtube.php?id=XXXXXXX

it’s work eny vedio

i wanna make the same on my site

:(*

You will need to try and explain yourself better if you want any more help from me, maybe someone else can understand what aloaax is looking for?