sql.sql file help

Status
Not open for further replies.

zynischen

New Member
Messages
38
Reaction score
0
Points
0
would anyone have a clue on how to open these files on the server?

thanks in advance

Zynischen:biggrin:
 

compwhizii

Banned
Messages
779
Reaction score
0
Points
0
They need to be run on the Database. I think you may be able to run them in phpMyAdmin.
 

vol7ron

New Member
Messages
434
Reaction score
0
Points
0
if it's an sql, just open it in a text editor. it should be nothing more than sql syntax. possibly a stored procedure.
 
Last edited:

zynischen

New Member
Messages
38
Reaction score
0
Points
0
if it's an sql, just open it in a text editor. it should be nothing more than sql syntax. possibly a stored procedure.

yep it is

Code:
CREATE TABLE `articles` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `subtitle` varchar(255) NOT NULL default '',
  `content` longtext NOT NULL,
  `active` tinyint(4) default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM;
and thank you for your help i got it to work on the server as well thanks
 
Status
Not open for further replies.
Top