i have an array in PHP and i want to print the content of it. My array has 3 entries :
610,
609,
608
when i print it with
print_r($ar_par[$i]);
the result i get is this:
What i want, is to print only the numbers. How can i do this ?
thanks in advance