I have a page called picture.php. The page is created dynamically when I put a footer in the url E.G. "picture.php?tutorialid=44"
The page asks to upload an image and when you do it needs to save it to a folder with the same name as the tutorialid.
When I try the following code it saves it to
/home/surefire/www/www/tutorials/
and not /home/surefire/www/www/tutorials/44/
$final_location="/home/surefire/www/www/tutorials/$tutorialid/";
When I do an echo command of $tutorialid it will print "44" on screen, but it just doens't seem to work for the above command...Any Ideas?