0
why i can't see this array
<?php $ser=455; $oy=988; $fer=array[$ser,$oy]; echo '$fer'; ?>
4 Answers
+ 2
you cant see "array" but $fer is not correct declarate , use array($ser,$oy) and for print use foreach
+ 1
Try echo$fer;
0
you must call array include index and write without quote, try : echo $fer[1]
0
try echo $fer[0] + " " + $fer[1];