View Single Post
Old 02-22-2011, 10:16 PM   PM User | #4
Fumigator
UE Antagonizer


 
Fumigator's Avatar
 
Join Date: Dec 2005
Location: Utah, USA, Northwestern hemisphere, Earth, Solar System, Milky Way Galaxy, Alpha Quadrant
Posts: 7,686
Thanks: 42
Thanked 637 Times in 625 Posts
Fumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of light
The function returns TRUE or FALSE; you can assign it to a variable and check it:

PHP Code:
$moveResult move_uploaded_file();
if (!
$moveResult)
{
    echo 
"ERROR";

Or just shortcut and check it directly:

PHP Code:
if (!move_uploaded_file())
{
    echo 
"ERROR";

__________________
Fumigator is offline   Reply With Quote