country value from jQuery variable need to insert into URL with PHP encrypt function, how can I use jQuery value into PHP
$("#country_select").change(function(){
var country = $("#country_select").val();
$(".price_content a").attr("href","signup.php?pack=<?php echo encrypt(2,$key);?>&country="<?php echo encrypt(country,$key);?>);
});
need to add var country
into encrypt
function...
How can i use?