About 5,840,000 results
Open links in new tab
  1. mysql - PHP: Submit checkbox to database - Stack Overflow

    Jun 11, 2013 · The classic way to submit data is to add the value attribute to your checkboxes element in your form. On server side you have to ckeck the value for "null". <input …

  2. php - How do I insert multiple checkbox values into a table?

    <input type="checkbox" name="Days[]" value="Daily">Daily<br> as array. Add [] to all names Days and work at php with this like an array. After it, you can INSERT values at different …

  3. php - How do I insert the value from a checkbox into MySQL?

    Jun 5, 2011 · You have to check the value and assign the 1 or 0 to the var which is used in the query to pass the response of checkbox. This is so because if the checkbox is unselected …

  4. Inserting Multiple Checkbox Values into a Database Using PHP

    Aug 16, 2023 · In this article, we will learn how to store multiple checkbox selections from an HTML form into a MySQL database using PHP. Follow this complete article to understand the …

  5. How to Insert Checkbox Value into database in PHP MySQL

    May 15, 2021 · In this article, you will be learn that how to insert checkbox values into mysql database in php mysql, which the data will be fetch from input checkbox with form tag on …

  6. Insert Multiple Selected Checkbox Values in Database in PHP

    Jun 30, 2023 · In this tutorial, we will guide you through the process of inserting multiple checkbox values into a database using PHP, without using PDO (PHP Data Objects). PDO is a popular …

  7. PHP - Simple Insert Multiple Checkbox Data | SourceCodester

    Jul 8, 2019 · Learn on how to create a Simple Insert Multiple Checkbox Data using PHP. A simple php code that can insert multiple checkbox entries to the database server. This is useful when …

  8. How to insert HTML checkbox value in database using PHP and …

    How to insert multiple checkbox values in PHP? We can insert multiple checkbox values using the array. First of all, we create an MYSQL database table. CREATE TABLE `languages` ( `id` …

  9. PHP - To Insert data from checkbox forms into MYSQL

    Jun 21, 2016 · I've run into trouble getting data from multiple check boxes from a HTML form into the database. The choices in the check boxes should represent a boolean value (yes/no - 1/0) …

  10. Insert Value From CheckBox In Database (MySQL) In PHP - C

    Now in this article, you will see how to insert a value from a checkbox in the MySQL database. Using a checkbox you can insert multiple values in the MySQL database in PHP. First of all, …

Refresh