| | |
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 |
apache api array beginner binary broken cache cakephp checkbox class cms code confirm cron curl customizableitems database date display dynamic echo email error external fcc file files folder form forms forum freelancing function functions google header headmethod howtowriteathesis href htaccess html iframe image include insert ip javascript joomla limit link login mail malfunction menu method mlm mod_rewrite multiple mysql neutrality oop pageing pagerank paypal pdf php phpmysql play problem query question radio random recursion remote root script search select server sessions sms soap source space sql support! syntax system table template tutorial update upload url validator variable video web youtube






