ctcp Posted July 4, 2009 Share Posted July 4, 2009 <?php require_once('Connections/files.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; } } $editFormAction = $_SERVER['PHP_SELF']; if (isset($_SERVER['QUERY_STRING'])) { $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']); } if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form2")) { $updateSQL = sprintf("UPDATE crackz SET name=%s, type=%s, links=%s, email=%s, pack_password=%s, site_url=%s, `option`=%s WHERE id=%s", GetSQLValueString($_POST['name'], "text"), GetSQLValueString($_POST['type'], "text"), GetSQLValueString($_POST['links'], "text"), GetSQLValueString($_POST['email'], "text"), GetSQLValueString($_POST['pack_password'], "text"), GetSQLValueString($_POST['site_url'], "text"), GetSQLValueString($_POST['option'], "text"), GetSQLValueString($_POST['id'], "int")); mysql_select_db($database_files, $files); $Result1 = mysql_query($updateSQL, $files) or die(mysql_error()); $updateGoTo = "start1.php"; if (isset($_SERVER['QUERY_STRING'])) { $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?"; $updateGoTo .= $_SERVER['QUERY_STRING']; } header(sprintf("Location: %s", $updateGoTo)); } $maxRows_Recordset1 = 20; $pageNum_Recordset1 = 0; if (isset($_GET['pageNum_Recordset1'])) { $pageNum_Recordset1 = $_GET['pageNum_Recordset1']; } $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1; mysql_select_db($database_files, $files); $query_Recordset1 = "SELECT * FROM crackz WHERE id = id ORDER BY `date` DESC"; $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1); $Recordset1 = mysql_query($query_limit_Recordset1, $files) or die(mysql_error()); $row_Recordset1 = mysql_fetch_assoc($Recordset1); if (isset($_GET['totalRows_Recordset1'])) { $totalRows_Recordset1 = $_GET['totalRows_Recordset1']; } else { $all_Recordset1 = mysql_query($query_Recordset1); $totalRows_Recordset1 = mysql_num_rows($all_Recordset1); } $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1; ?> <?php do { ?> <form id="form1" name="form1" method="post" action=""> <label for="textfield2"></label> </form> <form action="<?php echo $editFormAction; ?>" method="post" name="form2" id="form2"> <table align="center"> <tr valign="baseline"> <td nowrap="nowrap" align="right">Id:</td> <td><?php echo $row_Recordset1['id']; ?></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Name:</td> <td><input type="text" name="name" value="<?php echo htmlentities($row_Recordset1['name'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Type:</td> <td><input type="text" name="type" value="<?php echo htmlentities($row_Recordset1['type'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Links:</td> <td><input type="text" name="links" value="<?php echo htmlentities($row_Recordset1['links'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Email:</td> <td><input type="text" name="email" value="<?php echo htmlentities($row_Recordset1['email'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Pack_password:</td> <td><input type="text" name="pack_password" value="<?php echo htmlentities($row_Recordset1['pack_password'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Site_url:</td> <td><input type="text" name="site_url" value="<?php echo htmlentities($row_Recordset1['site_url'], ENT_COMPAT, ''); ?>" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Option:</td> <td><select name="option"> <option value="Yes" <?php if (!(strcmp("Yes", htmlentities($row_Recordset1['option'], ENT_COMPAT, '')))) {echo "SELECTED";} ?>>Yes</option> <option value="No" <?php if (!(strcmp("No", htmlentities($row_Recordset1['option'], ENT_COMPAT, '')))) {echo "SELECTED";} ?>>No</option> </select></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right"> </td> <td><input type="submit" value="Update record" /></td> </tr> </table> <input type="hidden" name="MM_update" value="form2" /> <input type="hidden" name="id" value="<?php echo $row_Recordset1['id']; ?>" /> </form> <p> </p> <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?> <?php mysql_free_result($Recordset1); ?> i result 20 records per page how to update records whithe one submit button.. Quote Link to comment Share on other sites More sharing options...
Adam Posted July 7, 2009 Share Posted July 7, 2009 UPDATE table_name SET this='that' WHERE .... Update will, update whatever records match the where clause. There's many ways to update 20 records, it's generally up to you to figure out how you'll know which ones to edit - we can't tell you. If you want better help you'll need to provide better information... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.