Aimless Posted May 26, 2010 Share Posted May 26, 2010 What's wrong with: $ft["settings"]["DIR"] = .GAME_DIRECTORY. ; .GAME_DIRECTORY. has previously been defined as: define("GAME_DIRECTORY", $row['path']); Thanks, Link to comment https://forums.phpfreaks.com/topic/202943-little-help/ Share on other sites More sharing options...
priti Posted May 26, 2010 Share Posted May 26, 2010 Why you have kept the "." around GAME_DIRECTORY? you have defined the constant like - define("GAME_DIRECTORY", $row['path']); then use as below $ft["settings"]["DIR"] = GAME_DIRECTORY ; Let us know what error you are facing? Thanks Link to comment https://forums.phpfreaks.com/topic/202943-little-help/#findComment-1063489 Share on other sites More sharing options...
Aimless Posted May 26, 2010 Author Share Posted May 26, 2010 Why you have kept the "." around GAME_DIRECTORY? you have defined the constant like - define("GAME_DIRECTORY", $row['path']); then use as below $ft["settings"]["DIR"] = GAME_DIRECTORY ; Let us know what error you are facing? Thanks Of course, thank you! Link to comment https://forums.phpfreaks.com/topic/202943-little-help/#findComment-1063538 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.