10-13-2011, 04:56 PM
hello guys!
well, as we had money problems, we coulndt keep the server on. soo we decided to realse the webpage code:
2
features:
-coded in flash.
-gm script [DESACTIVATED].
-login/logout, registration script.
-ranking.
-anouncements.
i dont include the web item mall script into it.
for the anouncements to work, you must exectue this sql querry in your newproject_db database:
SET SQL_SAFE_UPDATES=0; DROP TABLE IF EXISTS `anuncios`;
CREATE TABLE `anuncios` (
`id_anuncio` int(10) NOT NULL AUTO_INCREMENT,
`titulo` varchar(80) NOT NULL,
`descrip` text NOT NULL,
`autor` varchar(30) NOT NULL,
`tiempo` decimal(20,0) NOT NULL,
`url` text NOT NULL,
PRIMARY KEY (`id_anuncio`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `anuncios`
--
/*!40000 ALTER TABLE `anuncios` DISABLE KEYS */;
INSERT INTO `anuncios` (`id_anuncio`,`titulo`,`descrip`,`autor`,`tiempo`,`url`) VALUES
(1,Noticia 1,Lorem ipsum dolor sit amet, tempor commodo conceptam has in. Nec te quodsi mollis placerat, ferri dicunt duo an, nam ut legere eripuit necessitatibus. Mel quidam constituto ex, [CeNsOrEd] accusam epicurei aliquando ex. In omnis movet adversarium est, no vis audire aperiri tincidunt. Ne pri alia graece reprimique.,Squadron,1311904785,http://www.google.com),
(2,Noticia 2,Texto de la Noticia 2,Squadron,1311904790,http://www.ayuvideos.com);
/*!40000 ALTER TABLE `anuncios` ENABLE KEYS */;
for change database that will conect the website, edit the config.php, and also the index.php.
all credits goes to Wrong and to me.
