I am having several input fields with same name (there are several others input fields but this ones are important):
<input type=text name=title1 id=title1/>
<input type=text name=title2 id=title2/>
<input type=text name=title3 id=title3/>...
How can I count them (just input with name titlex)?
name="title[]"instead,$_POST['title']would be an array containing all of them. Is that an option?