bad_gui Posted March 27, 2008 Share Posted March 27, 2008 I'm trying to allow the user to use checkboxes to insert default category terms into the category column of a flatfile DB. There is more code but I'm only showing what is relevant. None of my php books uses checkboxes in this way and I can't figure out how to get this to work. $category = $_GET[category]; <TD VALIGN="top"> Check appropriate category: </TD> <TD> <?php echo $_GET["category"] ?> <LABEL> downstream signaling <INPUT TYPE="checkbox" NAME="category[]" VALUE="downstream signaling"> </LABEL> <LABEL> surface protein <INPUT TYPE="checkbox" NAME="category[]" VALUE="surface protein"> </LABEL> <LABEL> autocrine signaling <INPUT TYPE="checkbox" NAME="category[]" VALUE="autocrine signaling"> </LABEL> </TD> <TR> <TD VALIGN="top"> <INPUT TYPE="submit" VALUE="Upload"> <INPUT TYPE="reset" VALUE=" Reset "> </TD> </TR></TABLE> </FORM> Link to comment https://forums.phpfreaks.com/topic/98103-uploading-checkbox-categories-into-text-field-of-database/ Share on other sites More sharing options...
zenag Posted March 27, 2008 Share Posted March 27, 2008 do u need to insert selected checkbox values into database? Link to comment https://forums.phpfreaks.com/topic/98103-uploading-checkbox-categories-into-text-field-of-database/#findComment-501903 Share on other sites More sharing options...
bad_gui Posted March 27, 2008 Author Share Posted March 27, 2008 yes, I want the text that is the value uploaded into mysql Link to comment https://forums.phpfreaks.com/topic/98103-uploading-checkbox-categories-into-text-field-of-database/#findComment-502189 Share on other sites More sharing options...
zenag Posted March 31, 2008 Share Posted March 31, 2008 try this .... chech.php page <form action="check1.php" method="post"> <LABEL> downstream signaling <INPUT TYPE="checkbox" NAME="category[]" VALUE="downstream signaling"> </LABEL> <LABEL> surface protein <INPUT TYPE="checkbox" NAME="category[]" VALUE="surface protein"> </LABEL> <LABEL> autocrine signaling <INPUT TYPE="checkbox" NAME="category[]" VALUE="autocrine signaling"> </LABEL> </TD> <TR> <TD VALIGN="top"> <INPUT TYPE="submit" VALUE="Upload"> <INPUT TYPE="reset" VALUE=" Reset "> set fieldname categ in database as VARCHAR ,LENGTH 150 check1.php page <? $con=mysql_connect("localhost","root",""); mysql_select_db("databasename",$con); $cat=implode(",",$_POST["category"]); $sql= mysql_query("INSERT INTO category(categ)VALUES('$cat')"); ?> Link to comment https://forums.phpfreaks.com/topic/98103-uploading-checkbox-categories-into-text-field-of-database/#findComment-505365 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.