Jump to content

[php] array + checkbox


cherylinn

Recommended Posts

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

$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

$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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.