次の問題があります。HTMLフォームを介してユーザー名の値を更新しようとすると。ここに私のHTMLフォームがあります:
<form action="namechanging.php" method="post">
<br>
<fieldset>
<span class="ico user-ico"></span>
<input name="ingamename" type="text" class="field" value="Example: John_Doe" title="Example: John_Doe" />
</fieldset>
<center><input name="submit" type="submit" class="submit btn blue-btn" value="Change Name" /></center>
</form>
ここに私のnameching.phpファイルがあります:
<?php
session_start();
$_SESSION['ingamename'] = $_POST['ingamename'];
$newingamename = $_SESSION['ingamename'];
$nc = $_SESSION['nc'];
if($nc < 1){
$updateresult = '<strong>Error:</strong> You do not have any name changes left. Donate for more...';
header("Location: ucp-home-error.php");
}
else {
$con=mysqli_connect("localhost","USERNAME","PASS","DB-NAME");
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$newnc = $nc - 1;
mysqli_query($con,"UPDATE users SET Username=$newingamename WHERE Username='$_SESSION[user]' ");
mysqli_query($con,"UPDATE users SET NameChanges=$newnc
WHERE Username='$_SESSION[user]'");
$updateresult = 'Your In-Game Name was changed successfully. Please re-log!';
header("Location: ucp-home-success.php");
}
mysqli_close($con);
$_SESSION['updateresult'] = $updateresult;?>
$nc から -1 を削除しても機能しますが、ユーザー名は変更されません。また、ユーザー名がセッションに保存されることも知っておく必要があります。これは、認証ページにログインしたときに使用したユーザー名です。ここに私のauth.phpファイルがあります:
<?php
include("sql.php");
session_start();
function Destroy() {
unset($_SESSION['UID']);
unset($_SESSION['USERNAME']);
unset($_SESSION['FULL NAME']);
header("location: account-log-in-restricted.php");
}
if(isset($_SESSION['UID']) && isset($_SESSION['USERNAME'])) {
$UID = $_SESSION['UID'];
$username = $_SESSION['USERNAME'];
$qry = mysql_query("SELECT * FROM `users` WHERE `UID` = '$UID' AND `Username` = '$username'");
if(mysql_num_rows($qry) != 1) { Destroy(); }
} else { Destroy(); }
?>