close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Checkbox group insert and update values in one field

Thread began 8/09/2010 9:49 pm by Roland Rogers | Last modified 8/20/2010 7:17 am by Roland Rogers | 11236 views | 19 replies

johnb

Sooo close!!! Please help

After 8 hours of trial and error, I saw this post and got soooo excited because it seemed to be exactly what I need but I cannot seem to get it to work. The difference in mine might be that I am loading the checkboxes dynamically form another table. I have gotten that part to work fine. I am wondering if you could shed some light on why this wont work for me based on my code?

Here is the dynamically loaded code which places the checkboxes on the page:

<?php require_once("Connections/Polk.php");

$sql = "SELECT * FROM agents";
$pResult=mysql_query($sql) or die(mysql_error());

if(mysql_num_rows($pResult) == 0)
{
print "There are No Records";
}
else
{
while($tmp = mysql_fetch_assoc($pResult))
{
echo "<input type=\"checkbox\" name=\"agent_id[]\" value=\"".$tmp["ID"]."\" />"; echo $tmp['name'];
echo "<br />";
}
}
?>





Here is the insert code that was generated by Data Assist:

// WA Application Builder Insert
if (isset($_POST["Insert_x"])) // Trigger
{
$WA_connection = $Polk;
$WA_table = "test_table";
$WA_sessionName = "WADA_Insert_test_table";
$WA_redirectURL = "test_table_Detail.php";
$WA_keepQueryString = false;
$WA_indexField = "ID";
$WA_fieldNamesStr = "agent_id";
$WA_fieldValuesStr = "".((isset($_POST["agent_id"]))?$_POST["agent_id"]:"") ."";
$WA_columnTypesStr = "none,none,NULL";
$WA_fieldNames = explode("|", $WA_fieldNamesStr);
$WA_fieldValues = explode("|", $WA_fieldValuesStr);
$WA_columns = explode("|", $WA_columnTypesStr);
$WA_connectionDB = $database_Polk;
mysql_select_db($WA_connectionDB, $WA_connection);
if (!session_id()) session_start();
$insertParamsObj = WA_AB_generateInsertParams($WA_fieldNames, $WA_columns, $WA_fieldValues, -1);
$WA_Sql = "INSERT INTO `" . $WA_table . "` (" . $insertParamsObj->WA_tableValues . ") VALUES (" . $insertParamsObj->WA_dbValues . ")";
$MM_editCmd = mysql_query($WA_Sql, $WA_connection) or die(mysql_error());
$_SESSION[$WA_sessionName] = mysql_insert_id();
if ($WA_redirectURL != "") {
if ($WA_keepQueryString && $WA_redirectURL != "" && isset($_SERVER["QUERY_STRING"]) && $_SERVER["QUERY_STRING"] !== "" && sizeof($_POST) > 0) {
$WA_redirectURL .= ((strpos($WA_redirectURL, '?') === false)?"?":"&").$_SERVER["QUERY_STRING"];
}
header("Location: ".$WA_redirectURL);
}
}
?>




It seems like I would need to edit this line as you suggested with the implode string but when I do that it just sends a 0 to the database.


$WA_fieldValuesStr = "".((isset($_POST["agent_id"]))?$_POST["agent_id"]:"")  ."";

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...