2 dimensional array
- by ankit
$city=array('delhi','noida','mumbai','noida');
$name=array('ankit','atul','ramu','manu');
i want to create a 2 dimensional array using the two arrays above,with the name of the cities as keys and the corresponding names as the values.the names must be sorted.
plz help me