Welcome Guest, Not a member yet? Register   Sign In
Cant post code!!!!???
#2

[eluser]behnampmdg3[/eluser]
Trying to conver this code to a class:

Code:
include 'sms.php';
$api=new transmitsmsAPI("6128caf3",'bam');

// sending to a set of numbers
$result=$api->sendSms(
'Hello how are you?', '042444444', '042444444');

// sending to a list
//$result=$api->sendSms('test', null, 'callerid', null, 6151);

if($result->error->code=='SUCCESS')
{
     echo "Message to {$result->recipients} recipients sent with ID
     {$result->message_id}, cost {$result->cost}";
}
else
{
     echo "Error: {$result->error->description}";
}
After conversion:

Code:
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Send_sms extends CI_Controller {


public function index()
  {

   $params = array('6128caf3', 'bam');
   $api = $this->load->library('Mysms', $params);

   //transmitsmsAPI

    
    
    // sending to a set of numbers
    $result=$api->sendSms(
    'Hello how are you?', '********', ''********',');
    
    // sending to a list
    //$result=$api->sendSms('test', null, 'callerid', null, 6151);
    
    if($result->error->code=='SUCCESS')
    {
        echo "Message to {$result->recipients} recipients sent with ID
        {$result->message_id}, cost {$result->cost}";
    }
    else
    {
        echo "Error: {$result->error->description}";
    }
    
     }
}
But doesn't work!. GIves me blank page. Should be an easy thing! Please guide Smile
Thanks


Messages In This Thread
Cant post code!!!!??? - by El Forum - 01-28-2014, 10:56 PM
Cant post code!!!!??? - by El Forum - 01-28-2014, 10:57 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 03:43 AM
Cant post code!!!!??? - by El Forum - 01-29-2014, 02:41 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 03:41 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:07 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:08 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:09 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:10 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:11 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:15 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:15 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:22 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:25 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:35 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:36 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:36 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:43 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:45 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:51 PM
Cant post code!!!!??? - by El Forum - 01-29-2014, 05:52 PM
Cant post code!!!!??? - by El Forum - 01-31-2014, 06:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB