Here is simple line of code:
echo $array2[3]."<br>";
The .
Operator is appending <br>
with array resulting into the following error:
Array to string conversion
I don't want to use {$array2[3]}
like that. Is there any way to put both things in echo seperated?
Edit: Is there any way to print array with Echo
`. – Stéphane Bruckert Jun 17 '13 at 13:18