- Joined
- Feb 24, 2011
- Messages
- 60
- Reaction score
- 5
this what I have i have done this with
my code:
PHP:
reset($array);
my code:
PHP:
<?php
$numbers = array("This is 1","This is 2","This is 3");
next($numbers);
$thisvalue = current($numbers); echo "We are now at $thisvalue\n\n";
$first = reset($numbers);
echo "Back to $first";
?>
Last edited:

