eVideo YT

[insert_php]
$url = ‘https://www.youtube.com/watch?v=Tz-KVQZviKc’;
preg_match(
‘/[\\?\\&]v=([^\\?\\&]+)/’,
$url,
$matches
);
$id = $matches[1];

$width = ‘640’;
$height = ‘385’;
echo ‘‘;
[/insert_php]

Leave a Reply