0
Hello!
I wonder if there is any iframe or something like that I can get video on my site, in manageable case, usually youtube embed are with video ID. I wonder if there is one that I can paste the entire Youtube url that works on the page. Follow the example of what I use(remembering that this I copy only the video id)
<iframe width="100%" height="450" src="http://www.youtube.com/embed/<?php print $insti->video ?>"></iframe>
You can note that after the embed/embed is inserted the id of the video that is registered, only that I need some embed that I may be pasting the entire youtube link, example:
<iframe width="100%" height="450" src="https://www.youtube.com/watch?v=Z9VIEZhFORE"></iframe>
I was thinking about treating the URL, exploding and picking up the data only after = only sometimes the short URL of the video can be registered that ends up like this: https://youtu.be/9ZyZxgGBfic then it won’t work.