13 lines
308 B
PHP
13 lines
308 B
PHP
<?php
|
|
require_once __DIR__ . '/config.php';
|
|
|
|
try {
|
|
$pdo = db();
|
|
$sql = file_get_contents(__DIR__ . '/database.sql');
|
|
$pdo->exec($sql);
|
|
echo "Database initialized successfully with 'leads' table.
|
|
";
|
|
} catch (PDOException $e) {
|
|
die("Database initialization failed: " . $e->getMessage());
|
|
}
|