我在嘗試修復我的邀請系統。當用戶登錄時,系統創建$_SESSION['id']
,然後腳本檢查行inviteid
中是否有任何值。Mysql更新難度
如果系統檢查用戶是否有超過1000的點數。如果他有系統,則使用inviteid
更新引用者的點數。
<?php session_start();
ob_start();
error_reporting(0);
include("dbConn.php");
?>
<?php
if(isset($_SESSION['id'])){
?>
<?php
$unuserid = $_SESSION['id'];
$sql="select * from users WHERE id = $unuserid";
$result = mysql_query("SELECT * FROM users WHERE id='$unuserid'");
while($row = mysql_fetch_array($result))
{
$unPOINTS = $row['points'];
$uninviteid = $row['inviteid'];
}
if(isset($uninvited)) {
?>
<?php
if ($unPOINTS > 1000) {
?>
<?php
$sql="UPDATE users SET points = $unPOINTS + 500 WHERE id = $uninviteid";
$result=mysql_query($sql) or die(mysql_error()."<br />".$sql);
header("Location: index.php?page=changemember&id=$UID");
} }
?>
<?php
}
?>
那麼問題是什麼? – Crontab
它不更新點 – andrew
擺脫'error_reporting(0);'!不要隱藏錯誤信息 - 改爲寫乾淨的代碼。 –