我想通过带有href的超链接标签打开一个twitter引导模型到外部文件,我想通过GET或POST向文件发送一些数据......我不知道如何通过POST来做到这一点我试过这个GET,但它有些不能完全工作,这是我尝试过的......
$get_forms="mhk_resources/get_quote_forms.php?inputInsuranceType=$inputInsuranceType&addPartner=$addPartner&inputAge=$inputAge&inputGender=$inputGender&inputSmoked=$inputSmoked&inputCAmount=$inputCAmount&inputChildren=$inputChildren&inputAgep=$inputAgep&inputGenderp=$inputGenderp &inputSmokedp=$inputSmokedp&inputCAmountp=$inputCAmountp";
<a data-target='#myModal' href='<?php echo $get_forms;?>' role='button' class='btn' data-toggle='modal'>Launch demo modal</a>
但它不工作,如果我只使用
href='mhk_resources/get_quote_forms.php?inputInsuranceType=Life'那么它工作正常,但我怎样才能发送其他变量......?