Quote:
Originally posted by NTLDR
Lets try with {}:
PHP Code:
if (substr($target, "-1") != "/") {
$target .= "/$manufacturers_data['manufacturers_directory']";
}
If that doesn't work try:
PHP Code:
$target2=substr($target, "-1");
if ($target2!= "/") {
$target .= "/$manufacturers_data['manufacturers_directory']";
}
|
Neither works NTLDR.
Just to let you know the original is:
PHP Code:
function tep_copy_uploaded_file($filename, $target) {
if (substr($target, -1) != '/') $target .= '/';
$target .= $filename['name'];
move_uploaded_file($filename['tmp_name'], $target);
}
Problem is that with that, it uploads a file to a directory and I'm hoping that variable I added (From data it is pulling from the MySQL) will allow me to upload to that directory I specified.
THe current directory it is uploading to is /images/
I'm hoping with that variable it uploads to: /images/$manufacturers_data['manufacturers_directory'] where $manufacturers_data['manufacturers_directory'] would be information it is obtaining from MySQL.
I think i might be overlooking something which may be why it isn't working.