Hi is tehre any way I can reference the next array sequence like so?
I’m trying to create a ‘next’ option which will then be interchangeable depending on the array sequence.
[php]
$function = array(
//Work1
array(
"link.php",
"Title"
[b]echo $function[1][1],[/b]
),
//Work2
array(
"link.php",
"Title"
[b] echo $function[2][1],[/b]
),
);
?>
[/php]
Thanks!