Correct WML

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

    Correct WML

    Why dos this keep showing as html I thoufgt I converted it perfectly but it keeps showing error pars failed please help

    PHP Code:
    //////////////////////////PM 2 ALL
    else if($action=="toall")
    {
    addonline(getuid_sid($sid),"Owner Tools","");
      echo 
    "<card id=\"main\" title=\"Owner Tools\">";
      echo 
    "<p align=\"center\">";
      echo 
    "<b>Owner Tools</b>";
      echo 
    "</p>";
      echo 
    "<p>";

    echo 
    "<form action=\"ownrproc.php?action=prvtall2&amp;sid=$sid\" method=\"post\">";
    echo 
    "Message:<input name=\"pmtou1\" maxlength=\"250\"/><br/>";
    echo 
    "Recipient:<select name=\"who\">";
    echo 
    "<option value=\"online\">Online Members Only</option>";

    echo 
    "</select><br/>";
    echo 
    "<input type=\"submit\" value=\"Update\"/>";
    echo 
    "</p></form>";

    echo 
    "<p>";
    echo 
    "<a href=\"index.php?action=main&amp;sid=$sid\">»Main Menu</a>";
    echo 
    "</p></card>";
      


    And this 1 aswel

    PHP Code:
    ////////////////////////////pm2all///////////////////////
    else if($action=="prvtall2")

    {
    $who mysql_real_escape_string$_REQUEST["who"] );
    $pmtou1 mysql_real_escape_string$_REQUEST["pmtou1"] );
    $byuid getuid_sid($sid);

      echo 
    "<card id=\"main\" title=\"Owner Tools\">";
      echo 
    "<p align=\"center\">";
    echo 
    "Owner Control Panel";

    $tm microtime(get_as_float);

    if(
    $who=="online")
    {
    $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_private WHERE byuid='".$byuid."'"));
    echo 
    "<p>";
    echo 
    "<img src=\"../phpThumb/phpThumb.php?src=../images/check.png\" alt=\"x\"/>";
    echo 
    "The Online Members have been sent This Message<br/>";
    echo 
    "<a href=\"ownercp.php?action=ownercp&amp;sid=$sid\">»Owner Ttools</a>";
    echo 
    "</p>";
    $pms mysql_query("SELECT userid FROM ibwf_online ");
    $tm microtime(get_as_float);
    while(
    $pm=mysql_fetch_array($pms))
    {
    mysql_query("INSERT INTO ibwf_private SET text='Public Anouncment:[br/]".$pmtou1."[br/]<i>This message was sent to all online members</i>', byuid='".$byuid."', touid='".$pm[0]."', timesent='".$tm."'");
    }
    }
     echo 
    "</p>";
      echo 
    "</card>";
    exit();

    BakGat
    Code:
    class Counter {
    public:
      void Count();
      int  ReadDisplay();
    private:
      int  CurrentCount;
    };








    Back up my hard drive? How do I put it in reverse?
    My Community
    BakGat
    sigpic

    #2
    The first one, u also need to convert FORMS into wml. second one, u did not close the tag of paragraph :-)

    Ex.
    Code:
    <p></p>
    Not
    Code:
    <p><p></p></p>
    got it? .cheers.
    Last edited by metulj; 17.01.10, 13:41.

    Comment


      #3
      Ok so if I cant use forms what kind do I use.... Im doing this in wml as it's faster and works with all phones.... HTML is easy... I really wana make this script brilliant..... So please advice me on were to begin and end....
      What is the tag of paragraph...... And what is a form in WML

      I came up with this still get error

      PHP Code:
      //////////////////////////PM 2 ALL
      else if($action=="toall")
      {
      addonline(getuid_sid($sid),"Owner Tools","");
        echo 
      "<card id=\"main\" title=\"Owner Tools\">";
        echo 
      "<p align=\"center\">";
        echo 
      "<b>Owner Tools</b>";
        echo 
      "</p>";
        echo 
      "<p>";

      echo 
      "<anchor><go href=\"ownrproc.php?action=prvtall2&amp;sid=$sid\" method=\"post\"></anchor>";


      echo 
      "Message:<input type=\"pmtou1\" maxlength=\"250\"/><br/>";
      echo 
      "Recipient:<select name=\"who\">";
      echo 
      "<option value=\"online\">Online Members Only</option>";

      echo 
      "</select><br/>";
      echo 
      "<input type=\"submit\" value=\"Update\"/>";
      echo 
      "</p></form>";

      echo 
      "<p>";
      echo 
      "<a href=\"index.php?action=main&amp;sid=$sid\">»Main Menu</a>";
      echo 
      "</p></card>";
        


      Last edited by metulj; 17.01.10, 13:41.
      BakGat
      Code:
      class Counter {
      public:
        void Count();
        int  ReadDisplay();
      private:
        int  CurrentCount;
      };








      Back up my hard drive? How do I put it in reverse?
      My Community
      BakGat
      sigpic

      Comment


        #4
        im jst using a mobile phone and i dnt knw the terms of forms in wml but for u to learn, compare and observe very careful the script of forms and go href etc. etc. then u'l have ur answer :-)

        Comment


          #5
          Thats wht Im trying to do but thanks
          BakGat
          Code:
          class Counter {
          public:
            void Count();
            int  ReadDisplay();
          private:
            int  CurrentCount;
          };








          Back up my hard drive? How do I put it in reverse?
          My Community
          BakGat
          sigpic

          Comment


            #6
            u still use
            Code:
            </form>
            change it to anchor.. and NOTE: be very careful how u close ur TAG. wml is very sensitive. do not use this
            Code:
            </p></anchor>
            but this
            Code:
            </anchor></p>

            Comment


              #7
              Ok so I did what you say and shows as wml but know im stuck weres the submit button gonae to

              PHP Code:
              //////////////////////////PM 2 ALL
              else if($action=="toall")
              {
              addonline(getuid_sid($sid),"Owner Tools","");
                echo 
              "<card id=\"main\" title=\"Owner Tools\">";
                echo 
              "<p align=\"center\">";
                echo 
              "<b>Owner Tools</b>";
                echo 
              "</p>";
                echo 
              "<p>";




              echo 
              "Message:<input type=\"pmtou1\" maxlength=\"250\"/><br/>";
              echo 
              "Recipient:<select name=\"who\">";
              echo 
              "<option value=\"online\">Online Members Only</option>";
              echo 
              "<anchor><go href=\"ownrproc.php?action=prvtall2&amp;sid=$sid\" method=\"post\">";
              echo 
              "<postfield name=\"submit\" value=\"Update\"/>";
              echo 
              "</go></anchor>";


              echo 
              "<p>";
              echo 
              "<a href=\"index.php?action=main&amp;sid=$sid\">»Main Menu</a>";
              echo 
              "</p></card>";
                


              BakGat
              Code:
              class Counter {
              public:
                void Count();
                int  ReadDisplay();
              private:
                int  CurrentCount;
              };








              Back up my hard drive? How do I put it in reverse?
              My Community
              BakGat
              sigpic

              Comment


                #8
                Stupid me I never added the WORD Send LMFAO
                BakGat
                Code:
                class Counter {
                public:
                  void Count();
                  int  ReadDisplay();
                private:
                  int  CurrentCount;
                };








                Back up my hard drive? How do I put it in reverse?
                My Community
                BakGat
                sigpic

                Comment


                  #9
                  <input blah blah> <select blah blah><anchor> <go href blah blah> <postfield blah blah></anchor> this the proper way to do it. Pls observe and analyze.
                  Last edited by thanatos; 16.01.10, 09:05.

                  Comment


                    #10
                    yeah ur driving me nuts too LOL..

                    Comment


                      #11
                      Problem solved m8 my problem was </select> how stupid of me
                      BakGat
                      Code:
                      class Counter {
                      public:
                        void Count();
                        int  ReadDisplay();
                      private:
                        int  CurrentCount;
                      };








                      Back up my hard drive? How do I put it in reverse?
                      My Community
                      BakGat
                      sigpic

                      Comment


                        #12
                        Ok now I have a big problem...... It's all fixed and no more errors but its not submitting the message. What gives.....
                        BakGat
                        Code:
                        class Counter {
                        public:
                          void Count();
                          int  ReadDisplay();
                        private:
                          int  CurrentCount;
                        };








                        Back up my hard drive? How do I put it in reverse?
                        My Community
                        BakGat
                        sigpic

                        Comment


                          #13
                          PHP Code:
                          ////////////////////////////pm2all///////////////////////
                          else if($action=="prvtall2")

                          {
                            echo 
                          "<card id=\"main\" title=\"Owner Tools\">";
                            echo 
                          "<p align=\"center\">";
                          echo 
                          "Owner Control Panel";

                          $who mysql_real_escape_string$_REQUEST["who"] );
                          $pmtou1 mysql_real_escape_string$_REQUEST["pmtou1"] );
                          $byuid getuid_sid($sid);



                          $tm microtime(get_as_float);

                          if(
                          $who=="online")
                          {
                          $lastpm mysql_fetch_array(mysql_query("SELECT MAX(timesent) FROM ibwf_private WHERE byuid='".$byuid."'"));
                          echo 
                          "<p>";
                          echo 
                          "<img src=\"../images/check.png\" alt=\"x\"/>";
                          echo 
                          "The Online Members have been sent This Message<br/>";
                          echo 
                          "<a href=\"ownercp.php?action=ownercp&amp;sid=$sid\">»Owner Ttools</a>";
                          echo 
                          "</p>";
                          $pms mysql_query("SELECT userid FROM ibwf_online ");
                          $tm microtime(get_as_float);
                          while(
                          $pm=mysql_fetch_array($pms))
                          {
                          mysql_query("INSERT INTO ibwf_private SET text='Public Anouncment:[br/]".$pmtou1."[br/][i]This message was sent to all online members[/i]', byuid='".$byuid."', touid='".$pm[0]."', timesent='".$tm."'");
                          }
                          }
                           echo 
                          "</p>";
                            echo 
                          "</card>";


                          It dosnt show nothing just the headers why... why .... why
                          BakGat
                          Code:
                          class Counter {
                          public:
                            void Count();
                            int  ReadDisplay();
                          private:
                            int  CurrentCount;
                          };








                          Back up my hard drive? How do I put it in reverse?
                          My Community
                          BakGat
                          sigpic

                          Comment


                            #14
                            try to use
                            Code:
                            $res = Insert query blah blah.. if($res){ PM was sent }else{ DB err }
                            and u use $pms[0] to get userid of online member

                            Comment


                              #15
                              btw w3schools has a very good tut on WML u should read it to gain further knwledge

                              Comment

                              Working...
                              X