Hi friends,
I want to delete an element from an array and re order the array ie
$myArray=array('a','b','c','d');
echo $myArray[1]; // print b;
I want to delete $myArray[1]
From $ myArray
and re order the array So that echo $myArray[1]; // Return c insted of b
Thnaks In Advance
Rajeesh