This is from an php upload script:
File Directory where your files shall be uploaded. In this case it's fileupload, just change the directory name and DO NOT add a trailing slash
$filedir = "fileupload";
I want to use the folder that this script resides in as the upload folder and so just want what ever the name of the folder this file is in to be entered into the variable.
Can anyone help?
Also, I might use this (part of a different upload script):
$absolute_path = "/home/zachwhit/public_html/up-down"; //Absolute path to where files are uploaded - change to suit
This is an absolute path name where as the first wants a relative... Different query needed?
Thanks!