'; require_once($yaptc_inc . "header.inc.php"); if (getSessionStatus() == false): killSession(); else: ?>

prepare($query); $stmt->execute(array( ':username' => $_POST['username'], ':email' => $email )); $existing = $stmt->fetchObject(); if ($existing): if ($existing->username == $_POST['username']): $errors['username'] = lang('USERNAME_USED'); endif; if ($existing->email == $email): $errors['email'] = lang('PASSWORD_USED'); endif; endif; endif; if (!empty($_POST['newuser']) && empty($errors)): $hasher = new PasswordHash(8, FALSE); $password = $hasher->HashPassword($_POST['password']); $query = "INSERT INTO users (firstname, lastname, username, password, email, created, usertype) VALUES (:firstname, :lastname, :username, :password, :email, NOW(), :usertype)"; $stmt = $yaptc_db->prepare($query); $success = $stmt->execute(array( ':firstname' => $_POST['firstname'], ':lastname' => $_POST['lastname'], ':username' => $_POST['username'], ':password' => $password, ':email' => $_POST['email'], ':usertype' => $_POST['usertype'], )); if ($success): $message = "Account created."; else: echo "Account could not be created. Please try again later."; endif; endif; ?>

prepare("DELETE FROM users WHERE users.id=$deleteid"); $deletequery->execute(); echo "user deleted!"; header('Location: ' . $_SERVER['PHP_SELF']); } } // Set up pagination $page_num = 1; if(!empty($_GET['pnum'])): $page_num = filter_input(INPUT_GET, 'pnum', FILTER_VALIDATE_INT); if(false === $page_num): $page_num = 1; endif; endif; $offset = ($page_num - 1) * $yaptc_rowsperpage; $row_count = count(getUserInfo($yaptc_db, "%")); $page_count = 0; if (0 === $row_count): else: $page_count = (int)ceil($row_count / $yaptc_rowsperpage); if($page_num > $page_count): $page_num = 1; endif; endif; ?>

'; for ($i = 1; $i <= $page_count; $i++): echo '
  • ' . $i . '
  • '; endfor; echo ''; ?>