I found that you can use menu_setprop( menu, MPROP_NEXTNAME, "Next" )..
but what about the rest of the cases which go to the next page? Do I continue putting the cases under the menu_setprop, or above. For example.
PHP Code:
menu_additem( menu, "Option 1", "1", 0 )
menu_additem( menu, "Option 2", "2", 0 )
menu_setprop( menu, MPROP_NEXTNAME, "Next" )
menu_additem( menu, "Option 3", "3", 0 )
Would it be like that? or -- >
PHP Code:
menu_additem( menu, "Option 1", "1", 0 )
menu_additem( menu, "Option 2", "2", 0 )
menu_additem( menu, "Option 3", "3", 0 )
menu_setprop( menu, MPROP_NEXTNAME, "Next" )
And add all of the items above the prop..
Any help appreciated.
__________________