|
Let's turn this around. Perhaps you can help me with the real problem, because I'm not sure that a register/login is needed.
I have a PHP upload handler that works perfectly. It currently uploads files to...
$target_file_path = "c:\Server\upload\ " . $file_name;
I would really like it to upload files to...
$target_file_path = "c:\Server\upload\username\ " . $file_name;
or even
$target_file_path = "c:\Server\upload\username\event\ " . $file_name;
Is it possible to add some kind of pre-form to direct uploads before they take place without making someone register or login?
|