hi all!
i´ve tried to create a table like this:
$conn = mysql_connect(\"$hostname\",\"$username\",\"$passwort\");
$db = mysql_select_db($dbName, $conn);
if(!$db) {
@mysql_create_db($dbName);
mysql_select_db($dbName, $conn);
$test = @(\"CREATE TABLE $table (ID not null auto_increment primary key,...)\");
but it doesn´t work...
i´ve got a new folder \'$dbName\' but no table.
marc