- Mar 22, 2013
- 9,143
- 10,489
I have an area on my website where I can insert a Youtube (or any) link. Then another area that fetches what I inserted, but only fetches the ID of the link (the part after ?v= on Youtube videos). I'm certain this code does it:
What I need is for this to not fetch the ID of the link, but to fetch the Entire link I insert.
Here's a Yotutube video - https://www.youtube.com/watch?v=787mIhI6Bko
The code I inserted above will fetch that Bolded ID bit. How can I make it fetch the Entire link?
Sorry for the noob question. Thanks
Code:
$exp = explode("?v=",$video);
What I need is for this to not fetch the ID of the link, but to fetch the Entire link I insert.
Here's a Yotutube video - https://www.youtube.com/watch?v=787mIhI6Bko
The code I inserted above will fetch that Bolded ID bit. How can I make it fetch the Entire link?
Sorry for the noob question. Thanks