Just cause you can't do it doesn't mean you have to laugh at others mr. chuckles.
Printable View
http://www.newspal.fovq.com/newspal.zip
http://www.newspal.fovq.com/newspal.tar
Both the same just diffrent compression types.
Sorry, here it is:
Create a database then run this;
And this;Code:CREATE TABLE `news` (
`by` text NOT NULL,
`title` text NOT NULL,
`body` text NOT NULL,
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
)
That will create the tables and create this account;Code:CREATE TABLE `users` (
`username` text NOT NULL,
`password` text NOT NULL,
`level` varchar(11) NOT NULL default '1',
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
);
INSERT INTO `users` VALUES ('admin', '4cb9c8a8048fd02294477fcb1a41191a', '2', 1);
Username: admin
Password: changeme