zMagenta
Posting Freak
- Jul 15, 2011
- 1,414
- 682
Hello!
Another release here, harhar. This is a stand-alone PHP, HTML and CSS staff application script, and not built into a CMS.
Here's a screenshot of it.
Here's the SQL for it, as it's sent via the DB.
And here's the download:
Make sure you edit the 'db.php' and 'index.php' - Enjoy. (Likes are welcome)
Another release here, harhar. This is a stand-alone PHP, HTML and CSS staff application script, and not built into a CMS.
Here's a screenshot of it.
Here's the SQL for it, as it's sent via the DB.
Code:
DROP TABLE IF EXISTS `staffapps`;
CREATE TABLE `staffapps` (
`AppID` int(11) NOT NULL AUTO_INCREMENT,
`RealName` varchar(75) NOT NULL,
`UserName` varchar(75) DEFAULT NULL,
`Age` int(2) DEFAULT NULL,
`Timezone` varchar(10) DEFAULT NULL,
`Experience` longtext,
`Why` longtext,
`What` longtext,
`TimeStamp` int(11) DEFAULT NULL,
`IP` varchar(15) DEFAULT NULL,
PRIMARY KEY (`AppID`)
) ENGINE=InnoDB AUTO_INCREMENT=685 DEFAULT CHARSET=utf8;
And here's the download:
You must be registered for see links
Make sure you edit the 'db.php' and 'index.php' - Enjoy. (Likes are welcome)