Files
sam-sales/barobill_registration/init_db.php

15 lines
424 B
PHP

<?php
try {
if (!file_exists("../lib/mydb.php")) {
throw new Exception("Required library file ../lib/mydb.php not found.");
}
require_once("../lib/mydb.php");
$pdo = db_connect();
$sql = file_get_contents("schema.sql");
$pdo->exec($sql);
echo "Table 'barobill_members' initialized successfully.";
} catch (Throwable $e) {
echo "Error: [" . get_class($e) . "] " . $e->getMessage();
}