http://imageshack.us/photo/my-images/221/mysystem.jpg/
Hi There, Anyone can help me, I stuck right now at first column, which is Total Pending Column, I cannot change the data of "200" at frontend page, I just can edit it manually at backend page which is at phpmyadmin, it's difficult to my user to change the data at the front side, BUT it make me confused why the other column can be able to edit at the front? just only the Total Pending column cannot be edit, when I click update button, the others updated except first column.
please help me..
Herewith my Update PHP Coding
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
$updateSQL = sprintf("UPDATE sr1 SET appt_today=%s, partial_complete=%s, full_complete=%s, return_technical=%s, return_customer=%s, return_cancel=%s, cancel=%s, reappt=%s, focus=%s WHERE total_pending=%s",
GetSQLValueString($_POST['appt_today'], "int"),
GetSQLValueString($_POST['partial_complete'], "int"),
GetSQLValueString($_POST['full_complete'], "int"),
GetSQLValueString($_POST['return_technical'], "int"),
GetSQLValueString($_POST['return_customer'], "int"),
GetSQLValueString($_POST['return_cancel'], "int"),
GetSQLValueString($_POST['cancel'], "int"),
GetSQLValueString($_POST['reappt'], "int"),
GetSQLValueString($_POST['focus'], "int"),
GetSQLValueString($_POST['total_pending'], "int"));
mysql_select_db($database_pods, $pods);
$Result1 = mysql_query($updateSQL, $pods) or die(mysql_error());
$updateGoTo = "main.php";
if (isset($_SERVER['QUERY_STRING'])) {
$updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
$updateGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $updateGoTo));
}
mysql_select_db($database_pods, $pods);
$query_sr1 = "SELECT * FROM sr1";
$sr1 = mysql_query($query_sr1, $pods) or die(mysql_error());
$row_sr1 = mysql_fetch_assoc($sr1);
$totalRows_sr1 = mysql_num_rows($sr1);
?>
And Here is my Coding for input data, which I state above is "200" but cannot be update.
<input name="total_pending" type="text" class="style6" onKeyPress="return checkIt(event)" value="<?php echo $row_sr1['total_pending']; ?>" size="3" maxlength="3" />