Membership is FREE, giving all registered users unlimited access to every Acorn Domains feature, resource, and tool! Optional membership upgrades unlock exclusive benefits like profile signatures with links, banner placements, appearances in the weekly newsletter, and much more - customized to your membership level!
I am looking for some Windows based software to allow me to build MySQL/PHP driven websites.
I found :
Database driven PHP web site with no programming
Which seems OK, has anyone used it?
What alternatives are there?
Thanks
Admin
Here is an SQL code snippet that will create a table called "Countries" and insert a list of countries along with abbreviations. Edit the INSERT INTO lines to add your own:
CREATE TABLE `countries` (
`id` int(11) NOT NULL auto_increment,
`country_code` varchar(2) NOT NULL default ''...