thanks
i work on it, now i have assoc.txt
myname,myfriend,hisplace,hisjobs
my php like this
//get file name
$filename = "assoc.txt";
$handle = fopen($filename, "rb");
$contents = fread($handle, filesize($filename));
$findme = 'myfriend';
$pos = strpos($mystring, $findme);
echo $pos;
// close file
fclose($handle);
i got the position how to display hisplace and hisjobs,
what function should work
thanks