In Rails and CakePHP1.2, forms tend to include input elements with names like the following:
<input name="comment[author]" />
Is there a formal name for the notation used in the "name" attribute?
Likewise, in CakePHP1.1 I do believe that the same would have looked like this:
<input name="comment/author" />
Again, is there a formal name for the notation used in the "name" attribute?