ルイスP,람보님께서 답변해주셔서 힘내서 며칠 동안 시간날때마다 했는데.. 결국 답을 못찾고 다시 질문을 올리게되었습니다 ㅜ.ㅜ
a_1,a_2,a_3 필드에 010 1234 5678 이 들어가있구,
$row[a_1]$row[a_2]$row[a_3] 입력시에 번호가 01012345678 과 같이 잘 나오고 있습니다.
본문 최하단에 전체소스중 일부인
$options->to = ''; // 수신번호
'';에
$options->to = '$row[a_1]$row[a_2]$row[a_3]'; // 수신번호
와 같이 넣어서
결과가
$options->to = '01012345678; // 수신번호
로 인식하게(?)해야 하는데
$options->to = '$row[a_1]$row[a_2]$row[a_3]'; // 수신번호
요건 틀린문법이라 안되니..해결방법을 찾고있습니다
이렇게밖에 설명 못하는 제가 한탄스럽네요 ㅜㅜ;; 이해가 되셨는지 모르겠습니다.
html 같은경우는 구글링하면 대략 다 해결이됬는데 mysql 은 문외한이라 넘나 어렵군용,,
아시는 분께서는 답변해주시면 감사드리겠습니다.
좋은 하루되십시오!
coolsms 사용하기 어렵군요!(긁적;;)
try {
// initiate rest api sdk object
$rest = new Message($api_key, $api_secret);
// 4 options(to, from, type, text) are mandatory. must be filled
$options = new stdClass();
$options->to = '$row[a_1]$row[a_2]$row[a_3]'; // 수신번호
$options->from = '01011112222'; // 발신번호
$options->type = 'SMS'; // Message type ( SMS, LMS, MMS, ATA )
$options->text = 'Test Message Great.'; // 문자내용
$result = $rest->send($options);
print_r($result);
} catch(CoolsmsException $e) {
echo $e->getMessage(); // get error message
echo $e->getCode(); // get error code
}