我有两块需要连接在一起
1) 一个简单的 HTML 表单,用于收集网站 url
2) 一个 PHP 脚本,它接收从表单输入的 url。
我已经完成了 PHP 脚本,但它只有在我对 PHP 脚本中的 url 值进行硬编码时才有效。我不明白如何将 url 值从 html 表单传输到 PHP 脚本。
这是表格:
<form id="dm" class="api" method="post" action="apigenerate.php">
<input id="element_1" name="element_1" class="element text medium" type="text" maxlength="255" value=""/>
<input type="hidden" name="form_id" value="710370" />
<input class="button_text" type="submit" name="submit" value="Submit" />
</form>
这是API Script,第6行是输入值需要去的地方
<?php
$data = '
{
"site_data":
{
" the form input goes here "
}
}
';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.servername.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, "username:Ypassword");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(