Hi, I have this line of coding:
$userfile = 'directory/' + $_SESSION['user_name'];
I am trying to set a php variable ($userfile) to the user name that is stored in a session. I will be writing to that file, BUT it is in a different directory (directory/).
How can I do this?? Why doesn't my line of code work??