I am passing an array via $_POST method. I want to eliminate the spaces from the index values. My array is
Array
(
[full_word] => hi there
[btn] =>
)
I want to eliminate the space from the index element of full_word so that I can get the array below:
Array (
[0]=> hi
[1]=> there
)
But explode function is not working in here as $_POST returns an array and explode simply doesn't work on arrays.
What's the solution?
full word