Php-mysql Course

This tutorial shows how to get the value of multiple selected checkboxes that have the same value to the "name" attribute.
For example, if you have a list of articles, and you want to delete only the selected articles, add a checkbox to each article.
The trick is to add square brackets to the value of the "name" attribute, like this, to each checkbox:
name="thename[]"
In this way, when the form with the selected checkboxes is send to the PHP script, the variable: $_POST['thename'] will contain a numeric Array with the values of the selected checkboxes, having the index: 0, 1, 2, ...; in their order.
$_POST['thename'][0] = 'value of the first selected checkbox';
$_POST['thename'][1] = 'value of the second selected checkbox';
...

• Here's an example that you can test it.
<?php
// If data send via POST, with the name "cbname"
if(isset($_POST['cbname'])) {
  $cbarray = $_POST['cbname'];       // gets the value of the selected checkboxes
  print_r($cbarray);       // outputs the array with data stored in $cbarray
}
else {
  echo 'Select the web sites you like:';
}
?>
<br/><br/>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="checkbox" name="cbname[]" value="coursesweb" />https://coursesweb.net<br/>
<input type="checkbox" name="cbname[]" value="marplo" />marplo.net<br/>
<input type="checkbox" name="cbname[]" value="php" />www.PHP.net<br/>
<input type="checkbox" name="cbname[]" value="google" />www.Google.com<br/>
<input type="submit" value="Send" />
</form>

If you select all the checkboxes in the code above, the PHP script will output this result (the array with the values of the selected checkboxes, stored in $cbarray ):
Array ( [0] => coursesweb [1] => marplo [2] => php [3] => google )


- If the value of the checkboxes is the Unique ID of some articles selected from your database, and you want to delete the selected articles, you can use the implode() function to add the selected IDs (separated by comma) into a string that will be added in the SQL query. You must use the same technique to the name of the checkbox, adding the square brackets.
Example:
$ids = $_POST['cbname'];
$sql = "DELETE FROM `table_name` WHERE `id` IN(".implode(',' $ids).")";
- implode(',' $ids) will return a string like this:   "id1, id2, id3, ....".

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag adds an image in web page?
<div> <img> <span>
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which of these CSS codes displays the text oblique?
font-style: italic; text-decoration: underline; font-weight: 500;
#id {
  font-style: italic;
}
Click on the jQuery function used to hide with animation a HTML element.
click() hide() show()
$(document).ready(function() {
  $(".a_class").click(function(){ $(this).hide("slow"); });
});
Click on the correctly defined function in PHP.
fname function() {} function fname() {} function $fname() {};
function fname($a, $b) {
  echo $a * $b;
}
Get the value of multiple selected checkboxes with same name

Last accessed pages

  1. Node.js Move and Copy file (28274)
  2. Node.js Move and Copy Directory (19979)
  3. The Prayer of the Frog (2051)
  4. XML data from ActionScript to a PHP script (1290)
  5. Creating Custom Colors (2295)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (311)
  2. Read Excel file data in PHP - PhpExcelReader (113)
  3. The Four Agreements (94)
  4. PHP Unzipper - Extract Zip, Rar Archives (90)
  5. The Mastery of Love (84)
Chat
Chat or leave a message for the other users
Full screenInchide