Cree la tabla en en la base de datos y hasta hay llego, no se que mas hacer en este servidor queine me puede ayudar plz.#
#-----[ SQL ]-------------------------------------------
#
CREATE TABLE phpbb_board_message (
msg_id mediumint(8) NOT NULL auto_increment,
title varchar(25) NOT NULL default '(empty)',
message text NOT NULL,
showpage smallint(5) NOT NULL default '0',
auth tinyint(2) NOT NULL default '5',
width smallint(3) NOT NULL default '75',
starttime int(11) NOT NULL default '0',
endtime int(11) NOT NULL default '0',
startdate int(11) NOT NULL default '0',
enddate int(11) NOT NULL default '0',
users_timezone tinyint(1) NOT NULL default '0',
bbcode_uid varchar(10) NOT NULL default '',
days varchar(7) NOT NULL default '0000000',
images varchar(100) default NULL,
ordr smallint(3) NOT NULL default '0',
PRIMARY KEY (msg_id) );
INSERT INTO phpbb_board_message (msg_id, title, message, showpage, auth, width, starttime, endtime, startdate, enddate, users_timezone, bbcode_uid, days, images, ordr) VALUES (1, 'All Pages', 'This message will be shown on all pages. It can be view by all visitors. The width of the table = 80%. It als display a gif file. Order 10', 9999, 0, 80, 946681200, 946681200, 988581600, 1293750000, 0, '', '1111111', '/images/default.gif', 10),
(3, 'Index Only', 'The message will be showed only on the index. Only for registered people. On all days. Order 20', 0, 1, 50, 946681200, 946681200, 1009839600, 1293750000, 0, '', '1111111', '', 20);
#
necesito saber eso de not null , default dentro de la tabla como se hace en miarroba y si se puede hacer.