manoranjani
manoranjani

Reputation: 11

store multiple checkbox values to database using php and mysql

I want to store the multiple checkbox values to store in a single field. I use that link http://www.mindfiresolutions.com/Storing-array-data-to-MySQL-using-PHP-1296.php. But i dont get the result.Give Help to find that problem.

Upvotes: 0

Views: 8463

Answers (2)

Kirthiga
Kirthiga

Reputation: 3

I hope this will helpful

<html>
<body>
<form action="" method="post">
<p><input type="checkbox" name="color[]" value="red" />Red</p>
<p><input type="checkbox" name="color[]" value="blue" />Blue</p>
<p><input type="checkbox" name="color[]" value="orange" />orange</p>
<input type="submit" value="submit" name="sub" />
</form>

<?php

if(isset($_POST['sub']))
{
    mysql_connect("localhost","root","") or die("Server Could not be connected");
    mysql_select_db("gobinath") or die("database connection problam");
    $color=implode(',',$_POST['color']);

    mysql_query("insert into mcheck values('','$color')") or die("insert problam");

}
?>
</body>
</html>

Upvotes: 0

Suresh Kamrushi
Suresh Kamrushi

Reputation: 16086

Set your column as 'set' (specify the all possible values.) data type and than run the below query.

$comma_separated = implode(",", $values);
$insert_query = "INSERT INTO TABLE_NAME(col_name) VALUES('$comma_separated')";
$result_insert = mysql_query($insert_query);

I hope this will solve your problem.

Upvotes: 1

Related Questions