$id = $_GET["id"];

burda get ile aldığım id yi ajax ile post etmek istiyorum

ekrana yazdırdığımda "$id" böyle değer alıyorum nerede hatam var yardımlarınızı bekliyorum


<script>
$(document).ready(function(){
$('input[type="radio"]').click(function(){

var gender = $(this).val();
var urunid = $(this).val();

$.ajax({
url:"insert.php",
method:"POST",
data:{gender:gender,urunid:$id},
success:function(data){
$('#result').html(data);
}
});


});
});
</script>