cherylinn Posted June 21, 2012 Share Posted June 21, 2012 How to create a few checkbox according to the number of array? For example my array consist of [apple,orange,pear,grape,banana] I have a few URL in a php. Each of the url have to display different result. For example the first url page display apple,orange and the second url page display pear,apple,banana. For each fruits, there must be a checked checkbox beside it. How do i create an overall code for the checked checkbox since the number of the checked checkbox differ in each url page. Link to comment https://forums.phpfreaks.com/topic/264557-php-array-checkbox/ Share on other sites More sharing options...
scootstah Posted June 21, 2012 Share Posted June 21, 2012 $array = array('pear', 'apple', 'banana'); foreach($array as $a) { echo '<input type="checkbox" name="fruit[' . $a . ']" value="1" /> ' . $a . '<br />'; } Link to comment https://forums.phpfreaks.com/topic/264557-php-array-checkbox/#findComment-1355797 Share on other sites More sharing options...
cherylinn Posted June 21, 2012 Author Share Posted June 21, 2012 $array = array('pear', 'apple', 'banana'); foreach($array as $a) { echo '<input type="checkbox" name="fruit[' . $a . ']" value="1" /> ' . $a . '<br />'; } Thanks! it works but it doesn't show 31 in the days. Last question, how about month? where i need to display january february etc Link to comment https://forums.phpfreaks.com/topic/264557-php-array-checkbox/#findComment-1355869 Share on other sites More sharing options...
cherylinn Posted June 21, 2012 Author Share Posted June 21, 2012 $array = array('pear', 'apple', 'banana'); foreach($array as $a) { echo '<input type="checkbox" name="fruit[' . $a . ']" value="1" /> ' . $a . '<br />'; } Thanks! it works but it doesn't show 31 in the days. Last question, how about month? where i need to display january february etc opps i post wrong Link to comment https://forums.phpfreaks.com/topic/264557-php-array-checkbox/#findComment-1355876 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.