Hi,
I make a script that import text file that contain my friends phone numbers
the format of text file is this
someone:0123456789
someone2:0123456789
and I use following code to read it
$myFile = "fileTemp/$fileLocation";
$fh = fopen($myFile, 'r');
$Data = fread($fh, filesize($myFile));
fclose($fh);
$queryArray = explode ( "\r\n", $Data );
now i would like that $querArray key is name and value it's number
is that possible thank you