Ok. I am an intermediate user and have many time come across this where it would save me loads of time and always end having to take long way cause I can't figure it out.
I want to take an array say $data and the make all the values inside into a individual variables. Like using a foreach.
like
$data[first] = "Don"
$data[last] = "Juan"
etc
and after the foreach or for or whatever
I end up with
$first = "Don"
$last = "Juan"
etc.
Anyone know how to do this? This could save so much time
Thanks in advance