basit bir PHP şüphe ile bana yardım edin.
Ben basit bir form var:
< form action="foo" >
< label >Person:< /label >
< input type="text" id="name" >
< input type="text" id="last_name" >
< a href="javascript:addmore();">Add More
< /form >
Kullanıcı tıkladığında Daha iki yeni giriş alanları ekleyin her zaman dinamik olarak jQuery kullanılarak oluşturulur. Bu, aynı şekilde birkaç kez yapılabilir.
< form action="foo" >
< label>Person:< /label >
< input type="text" id="name" >
< input type="text" id="last_name" >
< input type="text" id="name_2" >
< input type="text" id="last_name_2" >
< a href="javascript:addmore();">Add More
< input type="sbumit" >
< /form >
Her çift (isim ve son_ad) benim db de rekor oluşturmanız gerekir.
Two Questions:
1) What is the best option for input id? Appending a counter is the best option?
2) How can I handle it in the backend using php?
Daha fazla bilgi gerekiyorsa bana bildirin.
Şimdiden teşekkürler.