Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

PHP keeps saying unidentified index: gender? I'm not sure where the error is.

HTML:

<label>Gender:</label> <input type="radio" name="gender" value="1">Male <input type="radio" name="gender" value="0">Female

JQuery:

gender: $("input[@name=gender]:checked").val()

PHP:

$gender = $_POST['gender'];
if($gender == '') {
  echo 'Please select gender';
} 
share|improve this question

2 Answers

$("input[@name=gender]:checked")

That is an invalid selector in modern jQuery. This means that no element is found, and therefore no value is set for gender. You need to remove the @ and add quote marks:

$("input[name='gender']:checked")

See the API for the attribute-equals selector.

share|improve this answer
it still wont work gender: $('input[name="gender"]:checked').val() – boyee007 Jan 13 '11 at 19:15
1  
@boyee007 How about showing some more code, then? The bit around that line would be particularly useful. Is other information being successfully passed? – lonesomeday Jan 13 '11 at 19:19

sorted. thanks

gender: $('input:radio[name=gender]:checked').val()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.