So here is my issue.
Code: Select all
<?php
$output = array(1,2,3);
echo print_r($output);
?>
Array ( [0] => 1 [1] => 2 [2] => 3 ) 1
Where is that extra '1' coming from? It's kind of driving me mad.
Thanks.
Moderator: General Moderators
Code: Select all
<?php
$output = array(1,2,3);
echo print_r($output);
?>