
Sep 21st, 2007, 16:55
|
 |
SuperMember
|
|
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: CREATE DATABASE name' from config.php
Replace this
- PHP: Select all
$db = 'CREATE DATABASE saltyblog';
with this
- PHP: Select all
$db = 'CREATE DATABASE '.$dbname;
|