Jump to content

creating database on hosting server


baber_abbasi

Recommended Posts

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.