How do I simply do something in PHP. What I mean is, how do I execute something that has no condition. I have this line of PHP: if (!copy($file, $newfile)). I would like to change it to this: do (!copy($file, $newfile)). I know that won't work though