DIV bbcode

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    DIV bbcode

    ok, been trying to figure this out in an easier way, but got div bbcodes... One has preset bg n text color, n the other one you can choose your bg n text color...

    Hope this helps somebody, as you see I coded it for lava a while back, but never had a chance to use it...
    PHP Code:
    $text preg_replace("/\[div\](.*?)\[\/div\]/is","<div style='border:1px solid black; background:white; color:black;'>$1</div>",$text);
     
    $text preg_replace("/\[divbg\=(.*?)\](.*?)::(.*?)\[\/divbg\]/is","<div style='border:1px solid black; background:$1; color:$2'>$3</div>",$text); 
    First One Works Like: [div]Text Goes Here[/div]

    Second One Works Like: [divbg=background_color]text_color::Your Text n Stuff Here[/divbg]

    Replace background_color for your desired bgcolor, n text_color for your desired text color in the second one...
    Please note: There are two:'s between the text color and text... like: :: If you leave them out this bbcode won't work...

    Ok, for a demo, check out ThumbType...
    I added this bbcode there n removed the full html support thing...
    Last edited by pmbguy; 29.09.13, 09:20.
    C3 Themes: http://c3themes.wen.ru/index.html
    Find Files: http://mystarter.tk/?goto=X-search

    #2
    Thats good idea ! but never code div in a site that used bbcodes in div .. unless using div to reclose.
    Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
    Visit: WapMasterz Coming Back Soon!
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

    Comment

    Working...
    X