I want to use a $_POST variable to be inserted in a file path.
I have:
$UploadFolder = "/fileuploads/";
$member_folder_path = $_POST['member_id'];
which I want combined:
targetFolder = $UploadFolder . $member_folder_path;
The point is to have each member to upload his/er stuff in separate folders.
Problem is that the uploading doesn't work when I try to add the $member_folder_path to the targetFolder
Any pointers towards a solution is appreciated!
Thanks!