On Mon, Aug 20, 2001 at 03:42:34PM -0400, Gerard Samuel wrote:
> $file = basename ($path);
> $file = $file.php3;
> 

You might want to consider using,

$file = basename ($path);
$file = "$file.php3";           // <-- !

instead, if you don't like warnings.

$file = $file.php3

isn't the way to do it! You _could_ use

$file = $file.".php3";

though.

-- 
* R&zE:


-- »»»»»»»»»»»»»»»»»»»»»»»»
-- Renze Munnik
-- DataLink BV
--
-- E: [EMAIL PROTECTED]
-- W: +31 23 5326162
-- F: +31 23 5322144
-- M: +31 6 21811143
--
-- Stationsplein 82
-- 2011 LM  HAARLEM
--
-- http://www.datalink.nl
-- ««««««««««««««««««««««««

-- 
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