Quote:
Originally Posted by TeraTask Look very closely at the code I put up there against your own code. You didn't copy-and-paste.
P.S. It's not necessary to break a string up into a bunch of pieces as you're doing. Just put single quotes around it and let it span as many lines as you want. |
Works beautiful, I shouldn't have cared about "." dots... I thought I'd have to put those to send queries from PHP lol... Thanx a lot
TeraTask PHP Code:
$query = 'CREATE TABLE `mycms` (
`id` int(11) unsigned NOT NULL auto_increment,
`username` varchar(10) NOT NULL,
`password` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
)';