change bbcode
ez |
|
---|---|
He tweebie,
ahh I see where it goes wrong.. http://www.youtube.com/watch?v=mnt30iJfMM8 is a full youtube interface with stuff in the screen You want only the movie in a box, so that is this url. http://www.youtube.com/v/mnt30iJfMM8 geeft You have to change this regexp \[youtube\](.+?)\[/youtube\] You have to experiment with that a little, because My regexp is not realy great. try something like: \[youtube\][www.youtube.com\/watch\?v=](.+?)\[/youtube\] This is my best guess.. try it, and fiddle with it The replace must be: <object width="290" height="233"><param name="movie" value="http://www.youtube.com/v/$1"></param><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="290" height="233"></embed></object> ==- I say: Keep it EZ -==
|