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.

Im having trouble setting the values of checkboxes. The values need to be the result of selecting first a dropdown option, which then upon a click return the value as a checkbox.

<input type="checkbox" value="<?php echo $area_of_education ?>">

Only returned a blank checkbox.

share|improve this question
Is this a post refresh to the page? Also include more of your code pls. – Laurence Burke Feb 2 '12 at 19:15

1 Answer

up vote 0 down vote accepted

Well php is a server side script that runs before the page is loaded. So if anything is clicked on the client side it will not update the page already shown to the client, unless there is a post refresh. You could try to use Javascript or Jquery to get this effect however.

Now if this is a returned value to the checkbox then the value should be the selected value from the dropdown list it just won't show because it is an attribute of the checkbox.

try something like this:

<input type="checkbox" value="<?php echo $area_of_education ?>"> <?php echo $area_of_education ?>
share|improve this answer
You sir are a genius. Thank you – Ken Feb 2 '12 at 19:50
@user1185918 You're very welcome, also if you think my answer correctly solved you quest dont forget to check mine as the correct one. – Laurence Burke Feb 2 '12 at 19:55

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.