I have a database that is named "blah_blah-blah" I can't change the name of the database. I've managed to work around all of the errors that this naming convention has caused except one. I backquoted the name in the sql calls... SELECT * ..... FROM ,blah_blah_-_blah.tablename .....; that fixed the sql calls. Now I seem to be having issues with the global definitions:
define(DB_NAME,"blah_blah-blah");
Dosn't seem to work...
neither does:
define(DB_NAME,"blah_blah_-_blah");
What would be the correct method of defining this global with this database name. PLEASE?
TIA