baber_abbasi Posted May 2, 2003 Share Posted May 2, 2003 I have hosting service with database support. There is no database created on the server as yet. I am trying to create one with my script but it is giving me error while on my local machine it executes successfully. The code that I am using is as below; <?php $sqlcrt = mysql_query(\"create database air\"); $dbhost = \'localhost\'; $dbusername = \'abc\'; $dbpasswd = \'xyz\'; $database_name = \'air\'; $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.\"); $query = mysql_query(\"CREATE TABLE cities ( id int(10) NOT NULL auto_increment, name varchar(30) NOT NULL default \'\', regid int(10) NOT NULL default \'0\', PRIMARY KEY (id), UNIQUE KEY id (id) )\"); ?> The username and password used above are same as used for connecting to server through FTP. Plz give me some hint how to resolve the prob. Thankx for time. Quote Link to comment Share on other sites More sharing options...
shivabharat Posted May 2, 2003 Share Posted May 2, 2003 u havent said mucha bout the error u get. Are u sure u have the database created in the remote server? now if ur host is a unix server u can try to use exec and try to execute the script as .sql Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.