On 15-03-27 02:54 PM, Release Edl wrote:
My file uploader doesn't work since I update the php verdion. One notice I found was "Use of undefined constant tmp_name" and others.... A piece of the problem script: $url = $_FILES['url']; if(file_exists("Imagem1/$url[name]")) { $url2 = $url_name."1"; } else { $url2 = $url_name; } if(!copy($url[tmp_name], "Imagem1/$url2")) { } $urlf = $root."Imagem1/$url2"; Thanks in advance for some help.
Is tmp_name a constant? A variable? Is it defined or populated? Should it be in quotes? -- Stephen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php