• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved [PHP] Youtube movie on Gesior's aac forum. Can't get it to work.

m3ssy

New Member
Joined
Feb 19, 2009
Messages
24
Reaction score
0
Ive added such a code to forum.php but it shows the movie only while browsing forum and not in news on a main page.
Code:
    while(stripos($text, '[youtube]') !== false && stripos($text, '[/youtube]') !== false )
    {
        $youtube = substr($text, stripos($text, '[youtube]')+14, stripos($text, '[/youtube]') - stripos($text, '[youtube]') - 14);
        $text = str_ireplace('[youtube]'.$youtube.'[/youtube]', '<embed src="http://www.youtube.com/v/'.$youtube.'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed>', $text);
    }

Any ideas how to make it work on the main page?


@edit
lol, i solved it myself.
just needed to add one line in latestnews.php :)
 
Last edited:
Back
Top