Jump to content

[SOLVED] Need more help (sorry!) ;oo


jscix

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.