jscix Posted February 11, 2007 Share Posted February 11, 2007 Ok, If I should not be using this forum for easy questions like these, please just tell me. I'm only a couple days into learning so i'm doing alot of thing's wrong here. Ok, how could I re-write this, so that PHP Inserts the value of the variables instead of the actual text $dbusr and $dbpw. Again I'm sorry for asking something, that's probably extreamly easy.. $query = 'CREATE TABLE `$dbusr` ( `$dbusr` varchar(26) NOT NULL, PRIMARY KEY (`$dbusr`) )'; Link to comment https://forums.phpfreaks.com/topic/37956-solved-need-more-help-sorry-oo/ Share on other sites More sharing options...
jscix Posted February 11, 2007 Author Share Posted February 11, 2007 I actually tried a few things... which did not work... $query = 'CREATE TABLE ` .$dbusr. ` ( `. $dbpw. ` varchar(26) NOT NULL, PRIMARY KEY (` .$dbusr. `) )'; and.. $query = 'CREATE TABLE ` . ($dbusr) . ` ( ` . ($dbpw) . ` varchar(26) NOT NULL, PRIMARY KEY (` . ($dbusr) . `) )'; what am I doing wrong now? .. ;o Link to comment https://forums.phpfreaks.com/topic/37956-solved-need-more-help-sorry-oo/#findComment-181646 Share on other sites More sharing options...
papaface Posted February 11, 2007 Share Posted February 11, 2007 try $query = "CREATE TABLE $dbusr ($dbpw varchar(26) NOT NULL, PRIMARY KEY ($dbusr))"; Link to comment https://forums.phpfreaks.com/topic/37956-solved-need-more-help-sorry-oo/#findComment-181647 Share on other sites More sharing options...
jscix Posted February 11, 2007 Author Share Posted February 11, 2007 It worked!, Tyvm! Link to comment https://forums.phpfreaks.com/topic/37956-solved-need-more-help-sorry-oo/#findComment-181650 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.