Clinton Posted June 6, 2008 Share Posted June 6, 2008 Ok: This $database = ("clintona_'$location'Inventory"); equals this: clintona_'5555'Inventory This $database = ("clintona_"$location"Inventory"); equals this: Parse error: syntax error, unexpected T_VARIABLE With or without the () it doesn't matter it still gives the same. How do I get it to equal this: clintona_5555Inventory ???? Without the ' ????? Quote Link to comment Share on other sites More sharing options...
pocobueno1388 Posted June 6, 2008 Share Posted June 6, 2008 $database = ("clintona_".$location."Inventory"); Quote Link to comment Share on other sites More sharing options...
Clinton Posted June 6, 2008 Author Share Posted June 6, 2008 Those damned dots. I should have known. Thank you very much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.