prepare('INSERT INTO admins (username, password, created_at) VALUES (?, ?, ?)'); try { $stmt->execute([$username, $hash, date('c')]); echo "Admin user created: $username\n"; } catch (Exception $e) { echo "Error creating admin: " . $e->getMessage() . "\n"; exit(1); }