Probably a simple overlook, but I cannot seem to create a table with my PHP script. My first question is that I want to add a table to an existing DB. How do I tell the server which DB to create the table in? The code to create a table is pretty simple, but here it is ..
CREATE TABLE Countr(ID INT IDENTITY(1,1) PRIMARY KEY,Page VARCHAR(50), Month INT, Always INT);
Any assistance would be appreciated.
SELECTqueries, you tell the server which DB you want by usingmysql_select_db()(or whatever function to that effect is used in the chosen library).