<form method="post" class="af-form-wrapper" action="http://www.aweber.com/scripts/addlead.pl">
我創建一個應用程序,從aweber提交但我也需要輸入字段來存儲數據庫。但我也需要這些輸入來存儲inv數據庫在我的最後,我怎麼能讓他們在PHP中,因爲我們不能有兩個動作。我創建的應用程序提交到aweber,但我也需要輸入字段來存儲數據庫
<form method="post" class="af-form-wrapper" action="http://www.aweber.com/scripts/addlead.pl">
我創建一個應用程序,從aweber提交但我也需要輸入字段來存儲數據庫。但我也需要這些輸入來存儲inv數據庫在我的最後,我怎麼能讓他們在PHP中,因爲我們不能有兩個動作。我創建的應用程序提交到aweber,但我也需要輸入字段來存儲數據庫
您可以使用JavaScript或jQuery的
當你的提交按鈕點擊就可以將表單數據發送到您的網址,你也可以上傳數據到控制器,那麼你可以將它插入到數據庫中。
<form id='myform' method='post'>
<input />
<input />
<button id='submit'></button>
</form>
$('#submit').on('click', function(){
$.ajax({
'dataType': 'json',
'type': 'POST',
'data': $('#myform').serialize(),
'url': 'http://www.aweber.com/scripts/addlead.pl',
success: function (data) {
//what ever you want to do with the return data
}
})
$.ajax({
'dataType': 'json',
'type': 'POST',
'data': $('#myform').serialize(),
'url': 'your code igniter controller url',
success: function (data) {
//what ever you want to do with the return data
}
})
})
我們可以捲曲的幫助下做到這一點
public function signup()
{
$fields_string='';
$ch = curl_init('http://www.aweber.com/scripts/addlead.pl');
$fields = array(
'name' => $this->input->post('name'),
'email' => $this->input->post('email'),
'meta_web_form_id' => '1122',
'meta_split_id' => '',
'listname' => 'abc',
'meta_redirect_onlist' => '',
'meta_adtracking' => 'My_Web_Form',
'meta_message' => '1',
'meta_required' => 'name,email',
'meta_forward_vars' => '0',
);
foreach($fields as $key=>$value)
{
$fields_string .= $key.'='.$value.'&';
}
rtrim($fields_string,'&');
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$returned = curl_exec($ch);
$this->register_user($fields);
}
$這個 - > register_user($字段); //這個函數會將值存儲在我的數據庫中,因爲我們將名稱和電子郵件傳遞給該函數
通常,您必須在它發生之前嘗試做它 –
如何解釋一下? –