$posts = array(
"message" => 'this is a test message'
);
foreach ($posts as $post) {
echo $post['message'];
}
Why does the above code only output the first letter in message? "t".
Thanks!
|
|
foreach takes each element of the array and assigns it to the variable. To get the results I assume you are expecting you just need to do:
The specifics as to why your code didn't work:
Obviously |
|||||||
|
What you possibly want is either this:
Or this:
|
|||||||
|
|
I'd add to iAn's answer something: if you want somehow to access to the key of the value, use this:
Result:
|
|||
|
|