Multiple Update only saving last row with List/Menu
I am trying to create a multiple row update page.... it works fine with text boxes, but I am now trying to add dynamic dropdown lists and on submit, only the last row actually saves.
<?php require_once('../../Connections/connSCHED.php'); ?>
<?php require_once("../../WA_DataAssist/WA_AppBuilder_PHP.php"); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_connSCHED, $connSCHED);
$query_rsBook = "SELECT * FROM book WHERE BOOK_ID > 1 AND BOOK_ID <30 AND TUNNEL = 1 ORDER BY LDATE ASC";
$rsBook = mysql_query($query_rsBook, $connSCHED) or die(mysql_error());
$row_rsBook = mysql_fetch_assoc($rsBook);
$totalRows_rsBook = mysql_num_rows($rsBook);
mysql_select_db($database_connSCHED, $connSCHED);
$query_rsCOACHES = "SELECT COACH_ID, NAME FROM coaches ORDER BY NAME ASC";
$rsCOACHES = mysql_query($query_rsCOACHES, $connSCHED) or die(mysql_error());
$row_rsCOACHES = mysql_fetch_assoc($rsCOACHES);
$totalRows_rsCOACHES = mysql_num_rows($rsCOACHES);?>
<?php
// WA DataAssist Multiple Updates
if (isset($_POST["btnUPDATEALL"])) // Trigger
{
if (!session_id()) session_start();
$WA_loopedIDField = array("WADA_RepeatID_BOOK_ID");
$WA_connection = $connSCHED;
$WA_table = "book";
$WA_redirectURL = "../vbook_Results.php";
$WA_keepQueryString = false;
$WA_indexField = "BOOK_ID";
$WA_fieldNamesStr = "LDATE|BDATE|WEEKDAY|BTIME|TUNNEL|COACH_ID|TEAM_ID|ATH_ID|BSTATUS|COMMENT|ACTIVE";
$WA_columnTypesStr = "',none,NULL|',none,NULL|',none,''|',none,NULL|none,none,NULL|none,none,NULL|none,none,NULL|none,none,NULL|',none,''|',none,''|none,none,NULL";
$WA_fieldNames = explode("|", $WA_fieldNamesStr);
$WA_columns = explode("|", $WA_columnTypesStr);
$WA_connectionDB = $database_connSCHED;
$WA_multipleUpdateCounter = 0;
mysql_select_db($WA_connectionDB, $WA_connection);
while (WA_AB_checkLoopedFieldsNotBlank($WA_loopedIDField, $WA_multipleUpdateCounter)) {
$WA_fieldValuesStr = "".$row_rsBook['LDATE'] ."" . "|" . "".$row_rsBook['BDATE'] ."" . "|" . "".$row_rsBook['WEEKDAY'] ."" . "|" . "".$row_rsBook['BTIME'] ."" . "|" . "".$row_rsBook['TUNNEL'] ."" . "|" . "".WA_AB_getLoopedFieldValue("dbCOACH_ID", $WA_multipleUpdateCounter) ."" . "|" . "".$row_rsBook['TEAM_ID'] ."" . "|" . "".$row_rsBook['ATH_ID'] ."" . "|" . "".$row_rsBook['BSTATUS'] ."" . "|" . "".$row_rsBook['COMMENT'] ."" . "|" . "".$row_rsBook['ACTIVE'] ."";
$WA_fieldValues = explode("|", $WA_fieldValuesStr);
$WA_where_fieldValuesStr = WA_AB_getLoopedFieldValue($WA_loopedIDField[0], $WA_multipleUpdateCounter);
$WA_where_columnTypesStr = "none,none,NULL";
$WA_where_comparisonStr = "=";
$WA_where_fieldNames = explode("|", $WA_indexField);
$WA_where_fieldValues = explode("|", $WA_where_fieldValuesStr);
$WA_where_columns = explode("|", $WA_where_columnTypesStr);
$WA_where_comparisons = explode("|", $WA_where_comparisonStr);
$updateParamsObj = WA_AB_generateInsertParams($WA_fieldNames, $WA_columns, $WA_fieldValues, -1);
$WhereObj = WA_AB_generateWhereClause($WA_where_fieldNames, $WA_where_columns, $WA_where_fieldValues, $WA_where_comparisons );
$WA_Sql = "UPDATE `" . $WA_table . "` SET " . $updateParamsObj->WA_setValues . " WHERE " . $WhereObj->sqlWhereClause . "";
$MM_editCmd = mysql_query($WA_Sql, $WA_connection) or die(mysql_error());
$WA_multipleUpdateCounter++;
}
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);
}
}
?>
<?php
// RepeatSelectionCounter_1 Initialization
$RepeatSelectionCounter_1 = 0;
$RepeatSelectionCounterBasedLooping_1 = false;
$RepeatSelectionCounter_1_Iterations = "1";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<?php
// RepeatSelectionCounter_1 Begin Loop
$RepeatSelectionCounter_1_IterationsRemaining = $RepeatSelectionCounter_1_Iterations;
while($RepeatSelectionCounter_1_IterationsRemaining--){
if($RepeatSelectionCounterBasedLooping_1 || $row_rsBook){
?>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_rsBook['LDATE']; ?></td>
<td><?php echo $row_rsBook['TUNNEL']; ?></td>
<td><input type="hidden" name="WADA_RepeatID_BOOK_ID_<?php echo $RepeatSelectionCounter_1; ?>" id="WADA_RepeatID_BOOK_ID_<?php echo $RepeatSelectionCounter_1; ?>" value="<?php echo $row_rsBook["BOOK_ID"]; ?>" />
<select name="dbCOACH_ID_<?php echo $RepeatSelectionCounter_1; ?>" id="dbCOACH_ID_<?php echo $RepeatSelectionCounter_1; ?>">
<?php
do {
?>
<option value="<?php echo $row_rsCOACHES['COACH_ID']?>"<?php if (!(strcmp($row_rsCOACHES['COACH_ID'], $row_rsBook['COACH_ID']))) {echo "selected=\"selected\"";} ?>><?php echo $row_rsCOACHES['NAME']?></option>
<?php
} while ($row_rsCOACHES = mysql_fetch_assoc($rsCOACHES));
$rows = mysql_num_rows($rsCOACHES);
if($rows > 0) {
mysql_data_seek($rsCOACHES, 0);
$row_rsCOACHES = mysql_fetch_assoc($rsCOACHES);
}
?>
</select></td>
<td> </td>
<td> </td>
</tr>
<?php } while ($row_rsBook = mysql_fetch_assoc($rsBook)); ?>
</table>
<?php
} // RepeatSelectionCounter_1 Begin Alternate Content
else{
?>
<td>No records match your request.</td>
<?php } // RepeatSelectionCounter_1 End Alternate Content
if(!$RepeatSelectionCounterBasedLooping_1 && $RepeatSelectionCounter_1_IterationsRemaining != 0){
if(!$row_rsBook && $RepeatSelectionCounter_1_Iterations == -1){$RepeatSelectionCounter_1_IterationsRemaining = 0;}
$row_rsBook = mysql_fetch_assoc($rsBook);
}
$RepeatSelectionCounter_1++;
} // RepeatSelectionCounter_1 End Loop
?>
<P>
<input type="submit" name="btnUPDATEALL" id="btnUPDATEALL" value="Submit" />
</form>
</body>
</html>
<?php
mysql_free_result($rsBook);
mysql_free_result($rsCOACHES);
?>