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. ?>