$row[4] = "comes from database" - pincode eg. 364001
$code=$row[4];
$array=array("State Name"=>$row[1] , "District" => $row[2] , "Assembly" => $row[3], "Code" => $code);
Convert $code
into string
means
"code"=> "$code"
but give error
so that 364001 become as a string not number
How to do this?