-1
$ _POST 변수 전후에 정적 구문을 삽입하는 방법은 무엇입니까? 당신은 어떤 단어가 실제로 있는지 제안하는 힌트가 없기 때문에이 분명히 잘못 알고 있듯이
'text' => Hello, $_POST["name"] Thank you for registering. Your unique membership ID is $_POST["memid"] More details have been sent on $_POST["email"]
:
<?php
require_once '/home/example/public_html/sms/vendor/autoload.php';
use Plivo\RestAPI;
$auth_id = "MAM2IXMDVLNZI3xxxxxx";
$auth_token = "YmI0NmQyZWQ5MDcwNjEyNjc4ZTMxYjNhMmxxxxxx";
$p = new RestAPI($auth_id, $auth_token);
// Send a message
$params = array(
'src' => 'AcmeLLC', // Sender's phone number with country code
'dst' => $_POST["dst"], //Receiver's phone number with country code
'text' => $_POST["text"], // Your SMS text message
//'url' => 'http://example.com/sms.html', // The URL to which with the status of the message is sent
'method' => 'POST' // The method used to call the url
);
// Send message
$response = $p->send_message($params);
// Print the response
echo "Response : ";
print_r ($response['response']);
// Print the Api ID
echo "<br> Api ID : {$response['response']['api_id']} <br>";
// Print the Message UUID
echo "Message UUID : {$response['response']['message_uuid'][0]} <br>";
?>
나는 이런 식으로 뭔가를 달성하고자 : 여기에 내가 사용하고 코드입니다 정적 및 기타는 POST를 통해 중력 양식으로부터 수신됩니다. 이 문제를 어떻게 해결해야합니까?
감사합니다! 여기
정말 고마워요! 이것은 완벽하게 작동했습니다! 나는 그것이 간단한 대답을 가지고 있다는 것을 알았지 만 PHP에서 초보자가되어 나를 위해 큰 성취가되었습니다. :) – physx911
@ngrhd 기꺼이 당신을 도왔습니다! 정확한 답으로 표시하십시오 :) –