<?php
$x_coordinates = array(037);
echo $x_coordinates[0];
?>
The above script outputs 31...When I remove the 0 it outputs 37, but I would like to keep that 0 because it helps me align an array right below it that way i can compare the two arrays, and KNOW which ones below to which ones
$x_coordinates = array(037, 053, 077);
$y_coordinates = array(263, 213, 239);
$coordinate_id = array(001, 002, 003);
see? If i removed the 0 it would look like this..
$x_coordinates = array(37, 53, 77);
$y_coordinates = array(263, 213, 239);
$coordinate_id = array(1, 2, 3);
and if his grew the space between each array value woulde get further apart, and it would be VERY difficult to keep up. What can i do to fix this issue, im absolutely perplexed..