It has been my experience that when someone has this problem, it is due to a syntax error in the array structure, not the actual number of items in the array. This makes sense when you consider the fact that the more items are added, the greater the chance that some inadvertent syntax error will creep in. The most common error is the use of display text in an array entry that includes an unescaped single quote ex:
Code:
menu1[2]='<a href="http://some.com/mensoccer.htm">Men's Soccer</a>'
Should be written:
Code:
menu1[2]='<a href="http://some.com/mensoccor.htm">Men\'s Soccer</a>'
Other common errors arise simply from not following the template for these entries exactly as in the demo. If you need more help -
PLEASE: Include the URL to your problematic webpage that you want help with.
Bookmarks