-1

これは、データを更新するために使用しているページの完全なコードです。何度も試しましたが、データベースの値はまだ更新されていません。また、エコーを試みましたが、まだ更新されていません

<?php
session_start();
include '../func-tion/func.php';
if(isset($_SESSION['m_uname']) && isset($_SESSION['m_pass']))
{

?>
<?php
if(isset($_POST['subup']))
{
$SQL="update appid set android_appid='".$_POST['and_a']."' , iphone_appid='".$_POST['iph_a']."' , ipad_appid='".$_POST['ipa_a']."' where u_name='".$_GET['name']."'";
echo $SQL;
}
?>



<?php 
               $main_qry=mysql_query("select * from users where u_name='".$_GET['name']."'");
              $main_fetch=mysql_fetch_assoc($main_qry); 

?>
 <center><h2 class="art-postheader">Edit details of <b></b></h2></center><br/><br/>
 <table align="center">  
 <tr align="center">
  <td style="height: 60px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Username:<br>
 <input type="text" name="u_name" style="width: 300px;" value="<?php echo $main_fetch['u_name']?>"></td>
 </tr>
 <tr align="center">
  <td style="height: 60px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Email:<br>
  <input type="text" name="u_email" style="width: 300px;" value="<?php echo $main_fetch['u_email']?>"></td>
</tr><?php 
               $main_qrys=mysql_query("select * from appid where u_name='".$_GET['name']."'");
              $row=mysql_fetch_assoc($main_qrys); 

?>      <form name="user" method="post" action="users_edit.php" onSubmit="return valid();">
 <tr align="center">
<td  style="width: 100px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Android Appid:<br>
  <input type="text" name="and_a" style="width: 300px;" value="<?php echo $row['android_appid']?>"></td>

</tr>
 <tr align="center">
<td  style="width: 100px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Iphone Appid:<br>
  <input type="text" name="iph_a" style="width: 300px;" value="<?php echo $row['iphone_appid']?>"></td>

</tr>
 <tr align="center">
<td  style="width: 100px; font-family: Helvetica,Arial,sans-serif; font-weight: bold;">Iphone(ipad) Appid:<br>
  <input type="text" name="ipa_a" style="width: 300px;" value="<?php echo $row['ipad_appid']?>"></td>

</tr>
<tr align="center">
  <td style="height: 28px;">
  <button name="subup" type="submit">Edit</button>
  </td>
</tr>
</form> 
</table>



</div>
                </div>
            </div>
        </div>

</div>

</body></html>

<?php
 }
else
{
header("Location:notserver.php?l=fake");
}
?>

誰かが知っていれば..私を助けてください、私は彼にとても感謝しています

4

1 に答える 1