I have the following php array:
Array ( [count] => 1 [0] => antwest@cisco.com )
All I need to do is get the email address out as a php string variable.
Surely this is something easy, could I use splice or something similar?
How can I do this?
Thanks :)
The email address lies in $array[0]
.
Basics of PHP, come on =D