Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

11 行
361 B

  1. <?php
  2. if (isset($_SESSION['userid'])) {
  3. $addacc = $con->prepare("INSERT INTO gwaccounts (userid, accemail) VALUES (?, ?)");
  4. $addacc->bind_param("is", $_SESSION['userid'], $_POST['accemail']);
  5. $addacc->execute();
  6. $addacc->close();
  7. echo 'New account added, returning to editor.';
  8. header ("Refresh:1; url=addaccounts.php");
  9. exit();
  10. }
  11. ?>