Jump to content
Dragos

[RST] Vezi clipurile +18 de pe YouTube

Recommended Posts

  • Moderators

Metoda asta merge de cand a fost implementata noua varianta de YouTube. Nu i-am dat mare importanta atunci, insa am vazut recent ca a fost postata si pe HackForums.

Ideea e urmatoarea. Navigand pe YouTube, in cele din urma dam de un clip care ne cere sa avem peste optsprezece ani (exemplu

). Trecerea se poate face foarte usor, embed-uind videoclipul. Cum? Simplu!


<iframe width="560" height="349" src="http://www.youtube.com/embed/COD" frameborder="0" allowfullscreen></iframe>

COD-ul este cel ce urmeaza dupa v= (in exemplul de mai sus este J3fmGNxsAcg).

La ce mai poate fi folosit? Multa lume inca nu stie de metoda asta, deci presupun ca se pot scoate bani prin site-uri ce ofera metoda. Aveti mai jos un exemplu simplu in PHP.


<?php
if ($_GET['p']=="")
{
?>
<form action="?p=ver" method="post">
Link YouTube: <input type="text" value="" name="link"><br /><br />
<input type="submit" value="Vezi videoclip">
</form>
<?php
}elseif ($_GET['p']=="ver"){
$link = explode("=",$_POST['link']);
echo '<iframe width="560" height="349" src="http://www.youtube.com/embed/' . $link[1] .'" frameborder="0" allowfullscreen></iframe>';
}
?>

Edited by Dragos
Link to comment
Share on other sites

  • Moderators
sau.. in loc sa faci chestia asta, faci un cont de 18 ani ^_^

Este o chestie.. nu stiu cum sa zic.. se foloseste des cand vrei sa treci peste filtrele de varsta ale site-urilor. Dar nah, la cati adolescenti sunt pe RST, se mai fac 2-3 pagini la topic.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...