Jump to content

Create Table problem


NME

Recommended Posts

I am trying to dynamically create a table with a different name everytime. The following code is used, but it never seems to actually create a Table when i look at the database.

[code]$dbhost = '<myhost>';
$dbusername = '<myusername>';
$dbpasswd = '<mypassword>';
$database_name = '<mydatabasename>';

$connection = mysql_pconnect("$dbhost","$dbusername","$dbpasswd")  
    or die ("Couldn't connect to server.");
$db = mysql_select_db("$database_name", $connection)
    or die("Couldn't select database.");


$sql = mysql_query ( "CREATE TABLE user_" . $userid . " (
        index int(25) NOT NULL auto_increment,
        count int(25) NOT NULL,
        PRIMARY KEY (index)
        )");
                [/code]

Any ideas why nothing is happening?
Link to comment
https://forums.phpfreaks.com/topic/10482-create-table-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.