Page 1 of 1

Idea's For Admin

Posted: Tue Nov 13, 2012 3:38 am
by Slutastic
Any chance of getting some bb codes put into the web teases?
php:

Code: Select all

function bbcodes($text){ //bold bb code: [b]text[/b]$text = preg_replace("/\[b\](.*?)\[\/b\]/i","<b>\\1</b>", $text); //underlined bb code: [u]text[/u]$text = preg_replace("/\[u\](.*?)\[\/u\]/i","<u>\\1</u>", $text); //url bb code: [url=address]Link Name[/url]$text = preg_replace("/\[url\=(.*?)\](.*?)\[\/url\]/is","<a href=\"$1\">$2</a>",$text);  reurn $text;}

Re: Idea's For Admin

Posted: Tue Nov 13, 2012 7:11 am
by Slutastic
[dice] bb code:

php:

Code: Select all

$text = str_replace("[dice]",'<img src="/images/dice/dice1.png" alt="" id="dice"/><br/><button onclick="rollDice()">Roll</button>',$text);
javascript:

Code: Select all

<script type="text/javascript">function rollDice(){document.getElementById('dice').src="/images/dice/dice"+Math.floor(Math.random()*6+1)+".png";}</script>
html:

Code: Select all

<img src="/images/dice/dice1.png" alt="" id="dice"/><br/><button onclick="rollDice()">Roll</button>