Wap Free Sms

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

    #16
    Owesome...! Thats what can i sy..Hope u will share the free sms script.

    Comment


      #17
      here is a PHP SMS API script.. register an account at MYSMSADDRESS.COM they have a one sms free trial... Global Coverage 500+ Networks

      here's another from clickatell.. they offer much cheaper sms credits.. they also have 10 sms free trial..
      Clickatell currently covers 712 networks in 212 countries for outbound messages and almost 100 countries for inbound messages (two-way SMS).

      Code:
      <?
      $user = "user";
      $password = "password";
      $api_id = "xxxx";
      $baseurl ="http://api.clickatell.com";
      $text = urlencode("This is an example message");
      $to = "0123456789";
      // auth call
      $url = "$baseurl/http/auth?user=$user&password=$password&api_id=$api_id";
      // do auth call
      $ret = file($url);
      // split our response. return string is on first line of the data returned
      $sess = split(":",$ret[0]);
      if ($sess[0] == "OK") {
      $sess_id = trim($sess[1]); // remove any whitespace
      $url = "$baseurl/http/sendmsg?session_id=$sess_id&to=$to&text=$text";
      // do sendmsg call
      $ret = file($url);
      $send = split(":",$ret[0]);
      if ($send[0] == "ID")
      echo "success
      message ID: ". $send[1];
      else
      echo "send message failed";
      } else {
      echo "Authentication failure: ". $ret[0];
      exit();
      }
      ?>
      ;)
      Attached Files

      Comment


        #18
        here is a PHP SMS API script.. register an account at MYSMSADDRESS.COM they have a one sms free trial... Global Coverage 500+ Networks

        here&#39;s another from clickatell.. they offer much cheaper sms credits.. they also have 10 sms free trial..
        Clickatell currently covers 712 networks in 212 countries for outbound messages and almost 100 countries for inbound messages (two-way SMS).

        Code:
        <?
        $user = "user";
        $password = "password";
        $api_id = "xxxx";
        $baseurl ="http://api.clickatell.com";
        $text = urlencode("This is an example message");
        $to = "0123456789";
        // auth call
        $url = "$baseurl/http/auth?user=$user&password=$password&api_id=$api_id";
        // do auth call
        $ret = file($url);
        // split our response. return string is on first line of the data returned
        $sess = split(":",$ret[0]);
        if ($sess[0] == "OK") {
        $sess_id = trim($sess[1]); // remove any whitespace
        $url = "$baseurl/http/sendmsg?session_id=$sess_id&to=$to&text=$text";
        // do sendmsg call
        $ret = file($url);
        $send = split(":",$ret[0]);
        if ($send[0] == "ID")
        echo "success
        message ID: ". $send[1];
        else
        echo "send message failed";
        } else {
        echo "Authentication failure: ". $ret[0];
        exit();
        }
        ?>
        ;)[/b]

        there are many items in the web this are just some right?
        Services

        Are you looking to take your wap or wapsite to a higher level? Do you want to stand out and rise above your competitors?

        Below is a list of services I offer:

        Wap Design and Customized Coding -The first way to stand out in a crowd is to have a brilliant and unique design for your wap or wapsite.

        Rates

        General consulting – My current hourly rate is $100 / hour.
        Custom Wapsite Community - My current rate is $500 / Wap Community Development.

        Comment


          #19
          there are many items in the web this are just some right?[/b]
          Is missing form sender, you can make one easy

          <form action="sms_send.php" method="post">
          To:<input type="Text" name="to">

          Message:<input type="text" name="text">
          <input type="submit" value="send">

          </form>

          where "sms_send.php" is page with php code

          Comment


            #20
            Sms sender try this one lol

            Comment


              #21
              is depending by frengo.com acount?

              Comment


                #22
                Yea it work thru frego but atleast it work, lol u can send to south africa ppl to

                Comment


                  #23
                  isnt work in Romania
                  Not in the countries list and on frego.com istn possibile to create acount with romanian tel number

                  Comment


                    #24
                    yeah thats right if you dont own that script dont sell it. unless you modified that script.

                    Comment


                      #25
                      lol i ws the first to mod a page so that it can work with frego not rider tannu (they just saved the page and it was a lame coding). But frego blocked it due to the mass sended messages

                      click here to join blingywap.co.za
                      http://blingywap.co.za


                      IF YOU NEED HELP JUST ASK AND ALWAYS SAY THANK YOU!

                      Comment


                        #26
                        It is not free sms uses clickatell duh!!! And is not your script

                        --------
                        AlstraSoft END-USER SOFTWARE LICENSE AGREEMENT and Disclaimer

                        SMS Text Messaging Enterprise 2.0
                        Contact: sales@AlstraSoft.com

                        AlstraSoft, Copyright 2003-2006
                        All rights reserved.

                        ----------------

                        Comment

                        Working...
                        X