I'm going to stab the next array that does not obey me in the eye.
Okay here's what I got.
I have a multidimensional $array. (stop me at any point if I'm wrong). Keys are things like [0] => [guid] [link] [title][desc], [1] => [guid] [link] [title][desc] etc. Values have HTML.
I array_popped the last item [24] off and exploded out the [desc] key into $new_array. When printed, the array resolves itself into a lovely associative array.
Here's the issue.
I want to crawl the $new_array's values for a string. Let's say, a username. If the username is in that key's value, I want to grab the whole value and explode it some more for db storage. So far all attemps at searching have failed. There is only one key in the array that has the value I want, but it's never in the same place depending on when I am pulling the feed.
please help!