Bb Code In Wml ?

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

    Bb Code In Wml ?

    is it possible to have BB code for blinking text in WML ?

    i know for XHTML goes like this

    Code:
    $text=preg_replace("/\[blink\](.*?)\[\/blink\]/i","<blink>\\1</blink>", $text);
    can it be done for WML ??
    also BB CODE for codebox in WML ??

    any one know how to do it?
    It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
    ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
    ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
    キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

    #2
    is it possible to have BB code for blinking text in WML ?

    i know for XHTML goes like this

    Code:
    $text=preg_replace("/\[blink\](.*?)\[\/blink\]/i","<blink>\\1</blink>", $text);
    can it be done for WML ??
    also BB CODE for codebox in WML ??

    any one know how to do it?[/b]
    Pozdrav..
    You can do it same like this
    Code:
    $text=preg_replace("/\[b\](.*?)\[\/b\]/i","[b]\\1[/b]", $text);
      $text=preg_replace("/\[i\](.*?)\[\/i\]/i","[i]\\1[/i]", $text);
      $text=preg_replace("/\[u\](.*?)\[\/u\]/i","[u]\\1[/u]", $text);
      $text=preg_replace("/\[big\](.*?)\[\/big\]/i","<big>\\1</big>", $text);
      $text=preg_replace("/\[small\](.*?)\[\/small\]/i","[size="1"]\\1[/size]", $text);
    part from rw script,
    and one more part not related to this topic
    Code:
    $text = str_replace("2wap","2crapforwap",$text);
      $text = str_replace("2WAP","2crapforwap",$text);
      $text = str_replace("2wAp","2crapforwap",$text);
      $text = str_replace("2w4p","2crapforwap",$text);
    These are suspicious from the owner of ex raingwap.net or his old nick wap2k yes he is wap2k

    Comment


      #3
      yes but the code metulj posted here doesnt work with all browsers when browsing in wml....
      sigpiceeeeerrr....

      Comment


        #4
        Just little reminder, about wap2k, I explored a little bit, he was moderator on this forum, and deleted all topics and posts in wap coding & wap scripts, after that he come here with other nick dj.dance, then he changed it to hardstyle , how can I prove it, go to sql file in ravingwap stolen script and you will see the admin email address is same as wap2k in his script wap2k portal, dj.dance or wap2k wasn&#39;t counting on that, because he was couting on that his script will be stolen
        p.s dj.dance himself made script(edited) the wap2k portal script, to something like crap and he was telling how wap2k is fool,idiot and etc. to hide that he is wap2k..at least you say that you are fool , so he can&#39;t be suspicious...very smart..hehe...

        Comment


          #5
          problem is.. that in wml scripts, code which i&#39;ve posted,
          doesnt work..
          actually works, but only while you browse site with opera browser(mini opera excluded here!)
          meanwhile, if same site got also xhtml version... you will see that code works on almost any browser
          funmobile script for example..
          you can send ya self inbox with blinking text.. or post it on forum, chatroom..
          but you will see that text actually blink only in xhtml mode,
          if you change view to wml mode... text wont blink anymore,
          unles you browse site with opera

          so.. how to fix this blinking text to get effect also in wml mode?
          and how to implement BBcode for [ codebox ] [ /codebox ] to wml ?
          if that&#39;s possible at all ?
          It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
          ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
          ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
          キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

          Comment


            #6
            problem is.. that in wml scripts, code which i&#39;ve posted,
            doesnt work..
            actually works, but only while you browse site with opera browser(mini opera excluded here!)
            meanwhile, if same site got also xhtml version... you will see that code works on almost any browser
            funmobile script for example..
            you can send ya self inbox with blinking text.. or post it on forum, chatroom..
            but you will see that text actually blink only in xhtml mode,
            if you change view to wml mode... text wont blink anymore,
            unles you browse site with opera

            so.. how to fix this blinking text to get effect also in wml mode?
            and how to implement BBcode for [ codebox ] [ /codebox ] to wml ?
            if that&#39;s possible at all ? [/b]
            I don&#39;t know does the wml standards support blinking, I never tried it
            But you can use bbcodes such as
            Code:
            [b[/b]
            [i][/i] etc..

            Comment


              #7
              I don&#39;t know does the wml standards support blinking, I never tried it
              But you can use bbcodes such as
              Code:
              [b[/b]
              [i][/i] etc..
              [/b]
              i know that..
              also for [url.... [img....

              but you havn&#39;t read the question...
              i&#39;d like to know if it&#39;s possible to get effective blinking BB code in WML mode
              and how to implement [ codebox ][ /codebox ] into WML......
              It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
              ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
              ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
              キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

              Comment


                #8
                i know that..
                also for [url.... [img....

                but you havn&#39;t read the question...
                i&#39;d like to know if it&#39;s possible to get effective blinking BB code in WML mode
                and how to implement [ codebox ][ /codebox ] into WML......[/b]
                I read it, but you don&#39;t think
                $text=preg_replace("/\[codebox\](.*?)\[\/codebox\]/i","<codeboxl>\\1</codebox>", $text);
                just replace it, again if wml supports it
                it&#39;s the same, the small tags works with wml, this one must too

                Comment


                  #9
                  eh... which part of my post you didnt understood?

                  come on man.. i aint that dumb FFS..

                  that works for xhtml only

                  and i&#39;m asking if thats possible for WML mode
                  and if, then how?
                  gee..
                  It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                  ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                  ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                  キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                  Comment


                    #10
                    is it possible to have BB code for blinking text in WML ?

                    i know for XHTML goes like this

                    Code:
                    $text=preg_replace("/\[blink\](.*?)\[\/blink\]/i","<blink>\\1</blink>", $text);
                    can it be done for WML ??
                    also BB CODE for codebox in WML ??

                    any one know how to do it?[/b]
                    I just don&#39;t get you no more argue
                    if this
                    Code:
                    $text=preg_replace("/\[blink\](.*?)\[\/blink\]/i","<blink>\\1</blink>", $text);
                    goes for xhtml, goes same for wml, ,see posts before...this
                    Code:
                    echo &#39;<blink>test</blink>&#39;;
                    works on Opera ,all you have to do is to test,try etc..

                    Comment


                      #11
                      I just don&#39;t get you no more argue
                      if this
                      Code:
                      $text=preg_replace("/\[blink\](.*?)\[\/blink\]/i","<blink>\\1</blink>", $text);
                      goes for xhtml, goes same for wml, ,see posts before...[/b]

                      well.. i did mention once or twice that code doesnt take effect in WML mode
                      cos i&#39;ve tried all general known BB code...
                      (maybe different tag possible for WML???)
                      so i&#39;m asking can it be fixed somehow for WML mode
                      and IF, then how..

                      Code:
                      echo &#39;<blink>test</blink>&#39;;
                      [/b]
                      and i did mention it&#39;s about BB code...
                      evethough i did tried to insert <blink>whatever</blink> into script code..
                      guess what.. didnt work either
                      It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                      ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                      ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                      キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                      Comment


                        #12
                        bbcode in wml will never work no use trying brother
                        Failure is not when a girls leaves you, its only when you let her go virgin. heheh!!

                        <span style="color:#9ACD32"><span style="font-size:36pt;line-height:100%">BEST MOBILE ADVERTISER</span></span>

                        Comment


                          #13
                          bbcode in wml will never work no use trying brother[/b]
                          Of course it will not without php, then please explain me how does it works in ravingwap/lavalair script?

                          Comment


                            #14
                            wtf wap2k and dj.dance are not the same person

                            and blinking text will never work in wml

                            Comment


                              #15
                              noways bro even in lava it dnt work trust me
                              Failure is not when a girls leaves you, its only when you let her go virgin. heheh!!

                              <span style="color:#9ACD32"><span style="font-size:36pt;line-height:100%">BEST MOBILE ADVERTISER</span></span>

                              Comment

                              Working...
                              X