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
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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.