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