I am not finding what might be the problem in my program.
I am having an array like this
$arr = array("1", "urgent", "4", "low", "15", "avg");
When i am searching this array using
$key = array_search("4", $arr);// Working
Its is giving me the index of that element;
But when i am searching for "1" it is not giving me any index.
$key = array_search("4", $arr); // Not working here - for searching "1"
What might be the problem.
Thank You