I've got a form on my page:
<form id="extended-search" >
<div class="input-container">
<select class="select" name="sex" id="sex">
<option value="0">All</option>
<option value="1">M</option>
<option value="2">F</option>
</select>
</div>
<input type = "button" class="searchButton" value = "Show" onClick="submitSearch();">
<img id="loading" src="img/ajax-loader.gif" alt="working.." />
</form>
And jQuery code on the same page:
function submitSearch() {
var submitSearchData = jQuery('#extended-search').serialize();
var selectedValue='<?php echo $_POST['sex'];?>' ;
jQuery.ajax({
type: "POST",
data: submitSearchData,
url: "feed.php",
success: function () {
alert(submitSearchData);
alert(selectedValue);
}
});
}
Everything works(first alert returns, for example, sex=1, but the second is empty) fine, but $_POST['sex'] is empty. I've been trying:
To use:
jQuery(document).ready(function(){
jQuery('.searchButton').click(function(){
submitSearch();
});
});
To remove: url: "feed.php", from AJAX.
To make: data: {sex: submitSearchData},
To add and change dataType in AJAX.
But everything is still the same. $_POST['sex'] is still empty. How do I pass $_POST var($_POST['sex']) through AJAX on the same page?
