Hi jason,

Quoting Jas <[EMAIL PROTECTED]>:

> 
> system("rename('/path/to/new.sh', '/path/to/old.$today')");
> 

I don't think this is correct syntax. Either use the php rename function like

rename('/path/to/new.sh', '/path/to/old.$today');

or if you want to use system then use
system ("rename '/path/to/new.sh' '/path/to/old.$today'");

HTH
R'twick

----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to