我需要将两个表单输入放入php脚本中。我使用get方法,但是当我尝试在我的网络服务器上运行代码时,我得到500错误。
的index.html
<!DOCTYPE html>
<html>
<head>
<title>SMS</title>
</head>
<body>
<form action="send_besked.php" method="get">
Tlf:: <input type="text" name="number"><br>
Besked: <input type="text" name="msg"><br>
<input type="submit">
</form>
</body>
</html>
&#13;
这是send_besked.php
<?php
// Required if your environment does not handle autoloading
require __DIR__ . '/vendor/autoload.php';
// Use the REST API Client to make requests to the Twilio REST API
use Twilio\Rest\Client;
// Your Account SID and Auth Token from twilio.com/console
$sid = 'xxxxx';
$token = 'xxxxx';
$client = new Client($sid, $token);
// Use the client to do fun stuff like send text messages!
$client->messages->create(
// the number you'd like to send the message to
'($_GET["number"])',
array(
// A Twilio phone number you purchased at twilio.com/console
'from' => '+19152282067',
// the body of the text message you'd like to send
'body' => 'echo ($_GET["msg"])'
)
);
&#13;
我删除了我的访问令牌和我的sid。
答案 0 :(得分:0)
为什么在向服务器提交数据时不使用POST(在表单标签中)?通常GET用于从服务器获取数据,POST用于向服务器提交数据。
答案 1 :(得分:0)
我明白了。
我使用了一个帖子脚本并删除了以下符号
'
感谢您的帮助