1

首先,我使用 PHP Dreamweaver 制作了一个带有 phpMyAdmin 数据库的程序。这个程序在我提交按钮时将我的第一行记录留空,一行中的剩余记录仍然存在,即第二行及以下,但第一行的记录仍在数据库中,为什么会发生? 对我来说解决这个程序的任何想法,它也不会更新我的记录。这让我生病了,我需要帮助!天...

<?php require_once('Connections/tlsc_conn.php'); 
  mysql_select_db($database_tlsc_conn, $tlsc_conn); 
  $query_Recordset1 = "SELECT * FROM tbl_name"; 
  $Recordset1 = mysql_query($query_Recordset1, $tlsc_conn) or die(mysql_error()); 
  $row_Recordset1 = mysql_fetch_assoc($Recordset1); 
  $totalRows_Recordset1 = mysql_num_rows($Recordset1); 

  if(isset($_POST['submit'])) { 
      $count = count($_POST['id']); 
      $submit = $_GET['id']; 

      for($i=0;$i<$count;$i++){ 
          $sql1="UPDATE $tbl_name SET name='$name[$i]', lastname='$lastname[$i]', email='$email[$i]' WHERE id='$id[$i]'"; 
          $row_Recordset1=mysql_query($sql1); 
       } 

    if($row_Recordset1){ 
            header("location:lulu.php"); 
            exit; 
    }    
 } 
?>

<!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=iso-8859-1" />
 <title>Untitled Document</title>
</head>
<body>
  <form name="form2" method="post" action="">
  <table width="634" border="1">
    <tr>
       <td>id</td>
       <td>name</td>
       <td>lastname</td>
       <td>email</td>
    </tr>
   <?php do { ?> 
    <tr>
      <td><?php $id[]=$row_Recordset1['id']; ?><?php echo $row_Recordset1['id']; ?> 
      <input name="id[]" type="hidden" value="<?php echo $row_Recordset1['id'];   ?>" />
      </td>
      <td>
        <input name="name[]" type="text" value="<?php echo $row_Recordset1['name']; ?>">                       
      </td>
      <td>
        <input name="lastname[]" type="text" value="<?php echo $row_Recordset1['lastname']; ?>">
      </td>
      <td>
        <input name="email[]" type="text" value="<?php echo  $row_Recordset1['email']; ?>">       </td>
    </tr>
    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>  
   </table>
    <p>
    <input type="submit" name="submit" value="Submit" />
    </p>
  </form>
   <p>
</body>
</html>
4

2 回答 2

0

首先从第 5 行删除它:

  $row_Recordset1 = mysql_fetch_assoc($Recordset1); // I think this not valid it should be only in loop

并通过while循环尝试:

 <?php while($row_Recordset1 = mysql_fetch_assoc($Recordset1))
{
 ?> 
    <tr>
      <td><?php $id[]=$row_Recordset1['id']; ?><?php echo $row_Recordset1['id']; ?> 
      <input name="id[]" type="hidden" value="<?php echo $row_Recordset1['id'];   ?>" />
      </td>
      <td>
        <input name="name[]" type="text" value="<?php echo $row_Recordset1['name']; ?>">                       
      </td>
      <td>
        <input name="lastname[]" type="text" value="<?php echo $row_Recordset1['lastname']; ?>">
      </td>
      <td>
        <input name="email[]" type="text" value="<?php echo  $row_Recordset1['email']; ?>">       </td>
    </tr>
    <?php }  ?>  
   </table>
    <p>
    <input type="submit" name="submit" value="Submit" />
    </p>
  </form>
   <p>
</body>
于 2013-09-19T07:31:33.427 回答
0

将您的更改loopingwhile而不是do-while. 检查您生成的 html 然后print_r($_POST)在表单提交之后查看您的post array. 使用mysqli或现在已弃用PDOmysql

编辑:

<?php while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)) { ?> 
<tr>
    <td><?php $id[]=$row_Recordset1['id']; ?><?php echo $row_Recordset1['id']; ?> 
        <input name="id[]" type="hidden" value="<?php echo $row_Recordset1['id'];   ?>" />
    </td>
    <td>
        <input name="name[]" type="text" value="<?php echo $row_Recordset1['name']; ?>">                             </td>
    <td>
        <input name="lastname[]" type="text" value="<?php echo $row_Recordset1['lastname']; ?>">
    </td>
    <td>
        <input name="email[]" type="text" value="<?php echo  $row_Recordset1['email']; ?>">
    </td>
</tr>
<?php }  ?>
于 2013-09-19T07:09:17.563 回答