codebeater - Beta Launch #10

Merged
5803025047 merged 103 commits from dev into main 2025-12-15 11:20:48 -05:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 157cf7ed5c - Show all commits

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.docs.txt

View File

@ -32,7 +32,7 @@ if(isset($_POST['register'])){
$new_user_id =$db-> insert_id;
$sql_char = "INSERT INTO characters (user_id, name, poin) VALUES (?, ?, 0)";
$sql_char = "INSERT INTO users (user_id, name, poin) VALUES (?, ?, 0)";
$stmt_char = $db->prepare($sql_char);
$stmt_char->bind_param("is", $new_user_id, $username);