I have a multidimensional associative array that I run through and grab a specific value that is then echoed out.
foreach ($multi_array as $entry) {
echo $entry['tag_id'];
}
It echos 12. What function could I use to convert it to…
`1`,`2`
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You are looking for the implode function, try this: