on 5/16/01 5:10 PM, Richard Kurth at [EMAIL PROTECTED] wrote:

> Is there a better way to do this    I want it to look and see if the
> userdata file is there and if true the bypass everything else run rest
> of code. If is not then check to see if userdat1 is and if it is
> change it's name to userdata the run rest of code. If none of the are
> there then gust shut down.
> 
> 
> if(file_exists("userdata")) {
> end;
> } elseif(file_exists("userdata1")) {
> copy('userdata1','userdata') ;
> system("rm userdata1");
> end;
> } else {
> exit;
> }
> 
> 
> < rest of code>

if (!file_exists("userfile")) {
 if (file_exists("userdata1") {
  unlink("userfile1");
 }
 else {
  exit;
 }
}

is a bit cleaner.  I'd use unlink("userfile1") rather than system("rm
userfile1") just to be pretty.

-- 
/chris/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to