the array shows as this:
$_ADMINLANG['global']['jumppage'] = "Jump to Page";
$_ADMINLANG['global']['go'] = "Go";
$_ADMINLANG['months']['january'] = "January";
$_ADMINLANG['months']['february'] = "February";
.......
now, i want to output the above data as this:
$_ADMINLANG['global']['jumppage'] =
$_ADMINLANG['global']['go'] =
$_ADMINLANG['months']['january'] =
"Jump to Page";
"Go";
"January";
how do i do ? thank you.
If you want to simply print the values as you mentioned, then this must be the code.