RE: [PHP] substr question...I suppose that $tmpmember=substr($entry, 0,-4); will do
the same? :)
Jeff
----- Original Message -----
From: Boget, Chris
To: 'Jeff Lewis' ; [EMAIL PROTECTED]
Sent: Thursday, July 26, 2001 3:54 PM
Subject: RE: [PHP] substr question...
> I am trying to receive file names but can't quite figure out
> the proper substr to do it:
> jeff.dat
> jeffrey.dat
> chris.dat
> tom.dat
> I want to receive the name to the left of the .dat
$fileName = eregi_replace( "\.dat", "", $fullFileName );
Chris