not sure how i go about adding in a sub-form or array for addresses and phone numbers so members can enter in an array of those items anyone want to point me in the right direction? this is my general layout
{
"_id":ObjectId("Autofill"),
"firstname": "Tom",
"lastname": "Benzamin",
"ridername": "Benz",
"dob": "01-01-1991",
"email": "alasdf@askdfj.com",
"address":
[
{
"building": "22 A, Indiana Apt",
"pincode": 123456,
"city": "Los Angeles",
"state": "California",
"mailing": true,
"Physical": false
},
{
"building": "170 A, Acropolis Apt",
"pincode": 456789,
"city": "Chicago",
"state": "Illinois
"mailing": false,
"Physical": true
}
Thanks in advance for your time
Pat
not sure how i go about adding in a sub-form or array for addresses and phone numbers so members can enter in an array of those items anyone want to point me in the right direction? this is my general layout { "_id":ObjectId("Autofill"), "firstname": "Tom", "lastname": "Benzamin", "ridername": "Benz", "dob": "01-01-1991", "email": "alasdf@askdfj.com", "address": [ { "building": "22 A, Indiana Apt", "pincode": 123456, "city": "Los Angeles", "state": "California", "mailing": true, "Physical": false }, { "building": "170 A, Acropolis Apt", "pincode": 456789, "city": "Chicago", "state": "Illinois "mailing": false, "Physical": true } Thanks in advance for your time Pat