Ok, I'm a php "noob" so please don't "pwn" me.
I have a .txt of conatact info that looks like this... (new line = new entry)
Joe , Smith , 123 Fake St. , Springfield , IL. , 60666, 630 , 5882300
Joe , Jones , 123 Fake St. , Springfield , IL. , 60666, 630 , 5882300
Joe , Adams , 123 Fake St. , Springfield , IL. , 60666, 630 , 5882300
I need to output the last name, first name and phone number only in alphabetical order by lastname.
Adams, Joe 630-588-2300
Jones, Joe 630-588-2300
Smith, Joe 630-588-2300
any help would be greatly appreciated.
Here is what I have so far... (not much)
<?
$filename = "data.txt";
$fd = fopen ($filename, "r");
$contents = fread ($fd, filesize($filename)) or die("file is empty, please submit data.");
fclose ($fd);
$fd = fopen ($filename, "r");
$contents = fread ($fd,filesize ($filename));
fclose ($fd);
$fp = fopen($filename, "r") or die("failure to open.");
while(!feof($fp)) {
$line = fgets($fp);
list($namefirst, $namelast, $streetaddress, $city, $state, $zip, $areacode, $phone) = explode(",", $line);
?>
//thanks again