| | |
Get value from checkbox
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
Hi all,
I have used the checkboxes in my page as given below
If all the checkboxes are selected then how can we get the values of individual checkbox in php during a form submission. Anyone have idea for this?
I have used the checkboxes in my page as given below
PHP Syntax (Toggle Plain Text)
<input type="checkbox" name="chkboxarray" value=1> <input type="checkbox" name="chkboxarray" value=2> <input type="checkbox" name="chkboxarray" value=3>
If all the checkboxes are selected then how can we get the values of individual checkbox in php during a form submission. Anyone have idea for this?
Last edited by stymiee; Jan 17th, 2007 at 10:42 am. Reason: fixed code tags
<input type="checkbox" name="chkboxarray[]" value=1> <input type="checkbox" name="chkboxarray[]" value=2> <input type="checkbox" name="chkboxarray[]" value=3>
To access them as a group:
php Syntax (Toggle Plain Text)
foreach ($_REQUEST['chkboxarray'] as $checkbox) { echo $checkbox; }
John Conde
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Since they all share the same name you can't get them individually. You'll need to look for the value of each and base your actions on that. Your only alternative is to give each one a unique name in your HTML.
John Conde
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
Brainyminds | Merchant Account Services | I Love Code
IT'S HERE: Merchant Accounts 101 Everything you need to know about merchant accounts!
![]() |
Similar Threads
- how do i get more than one checkbox being checked (ASP)
- checkbox values calculation with PHP (PHP)
- hide checkbox in grid appropriately (ASP.NET)
- recordset from multiple checkbox values (ASP)
- checkbox values (JSP)
- Adding a checkbox column dynamically (C#)
Other Threads in the PHP Forum
- Previous Thread: PHP+Mysql+mediumblob
- Next Thread: Help
| Thread Tools | Search this Thread |
.htaccess ajax apache api array back basic beginner binary broken cakephp checkbox class cms code computing cron curl database date delete directory display download dynamic echo email error file files filter folder form forms function functions gc_maxlifetime google host href htaccess html image include insert integration ip java javascript joomla limit link login loop mail memmory memory menu mlm mod_rewrite multiple mysql navigation oop parsing paypal pdf php problem query radio random recursion regex remote script search server sessions sms snippet soap source space sql syntax system table thesishelp tutorial update upload url validation validator variable video web xml youtube






