Files
sam-sales/barobill_registration/init_db.php
aweso 2a3382084d 바로빌 회원가입 추가
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-13 21:26:49 +09:00

13 lines
269 B
PHP

<?php
require_once("../lib/mydb.php");
try {
$pdo = db_connect();
$sql = file_get_contents("schema.sql");
$pdo->exec($sql);
echo "Table 'barobill_members' initialized successfully.";
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
?>