[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]
[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]
You must be logged in to post a comment.