i want to open a twitter bootstrap model by an hyperlinnk tag with href to an external file, i want to send some data to the file by GET or POST... i have no idea how to do that by POST by i tried this by GET, but its some how not working completly, here is what i tried...
$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>
but its not working, if i used just
href='mhk_resources/get_quote_forms.php?inputInsuranceType=Life'then it works fine, but how can i send the other variables... ?