+ 2
Why it is appeared parse sintax ERROR ","?
When I 've pressed "RUN" it is appeared in mult2 array initialisation, may be. In mult2_arr. php. https://code.sololearn.com/wME1245evp33/?ref=app
2 Answers
+ 2
There are multiple errors in your code, one appears at the array declaration. Youâre closing off more parenthesis than youâre opening up, so at the end of the declaration there are excess parenthesis.
Second part is an exclamation mark where there should be â++â in your second loop.
Third part is in your column loop, youâve got a typo on column âcolomn = 0â.
The fourth error is when youâre printing your variable, the keys in your array are written with text, theyâre not all variables. To be clear, youâve missed the â$â symbol on two of your key variables.
That should do it, might wanna tweak your output a bit after that, good luck :)
Hope it helped, meant no offense just wanted to be clear in where your issues were.
+ 2
Thank You, Tutor Victor - :). It 's OK!!. It works fine.