2016-03-31 80 views
1

我的編輯按鈕沒有工作結果lbank,看起來是什麼原因?我的編輯按鈕不工作結果lbank,看起來是什麼原因?

這是我 admn_account.php 按說應該帶我到編輯部分,而不是帶我到空白部分 和使用主要是包括由1個指數與其他人一樣的東西要說救起來的PHP文件?

 <h2 class="form-signin-heading">Account Management</h2><hr /> 

<table class="table bg-dark"> 
    <thead> 
    <tr> 
     <th>#</th> 
     <th>First Name</th> 
     <th>Last Name</th> 
     <th>Middle Name</th> 
     <th>Address</th> 
     <th>Secret Question</th>   
     <th>Secret Answer</th> 
     <th>Email Address</th> 
     <th>Level of Access</th> 

    </tr> 
    </thead> 
    <tbody> 


<?php 
     $stmt = $user_home->getUserList(); 

     if($stmt->rowCount()>0){ 

      foreach ($stmt as $row){ 

     ?> 
      <tr> 
      <th scope="row"><?echo $row->userID ?></th> 
      <td><?echo $row->userfirstName ?></td> 
      <td><?echo $row->userlastName ?></td> 
      <td><?echo $row->usermiddleName ?></td> 
      <td><?echo $row->userAddress ?></td> 
      <td><?echo $row->usersecretQuestion ?></td> 
      <td><?echo $row->usersecretAnswer ?></td> 
      <td><?echo $row->userEmail ?></td> 
      <td><?echo $row->usertype ?></td> 
      </td> 


      <form method="POST" class="userTransdoConfirm"> 
      <input type="hidden" value="<?echo $row->userfirstName?>" name="id"> 
      </form> 
      </td> </tr>  
     <? 
      } 
     } 

    ?> 
    </tbody> </table> 
</div> 
+0

http://pastebin.com/2hZ6U64R這是用於更新零件和活動的代碼btw – rakisha42

+0

您的代碼在哪裏編輯? –

回答

0

只是胡亂出手,因爲不是所有的代碼存在,請嘗試更改隱藏輸入用戶的ID。

<form method="POST" class="userTransdoConfirm"> 
    <input type="hidden" value="<?echo $row->userID?>" name="id"> 
</form> 
相關問題