| | |
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
Views: 13794 | Replies: 3
| Thread Tools | Search this Thread |
Tag cloud for PHP
.htaccess access ajax apache api array beginner beneath binary broken cakephp checkbox class cms code convert cron curl database date directory display download dynamic echo email error file files folder form forms function functions google href htaccess html image include insert integration ip java javascript joomla jquery limit link login loop mail menu methods mlm mod_rewrite multiple mysql network oop parse paypal pdf php problem query radio random recursion redirect regex remote script search select server sessions sms smtp soap source space speed sql structure syntax system table tutorial update updates upload url validation validator variable video web xml youtube






