Possible Duplicate:
Get first element of array
Convert array to string php
I have this array: $ tab.
I perform a print_r() it has just this:
Array ( [0] => integration ).
How to get the value integration without doing $tab[0]?
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 could use:
Id question why it’s in an array in the first place if you don’t need it to be and what the issue with using
$tab[0]is