Any one know how to get this bit of code
$sequence = array_pad(array(), 43, " ");
to work with php3?
for ($i = 1; $i <= 43; $i++) { array_push ($myArray, " "); }