Ah, ok sorry ... Let me say: ONE should write an FAQ. Or you write one and sell it to them😉
No, to my knowledge there is no loop anywhere in the form yet - I did, however, add a thank you message.
It's like this: I leave all three boxes empty -> I get an okay all-fields result.
But I need to add banking details that are not part of the form fields, so I need to use either header or footer for the additional info. Once I use either of the two, anything in the main body is multiplied by twelve.
I basically want to add this:
<html>
<body>
<h2>Thank you for registering for EurOpen!</h2>
<p>We have received the following information:</p>
<style>
table, th, td {
border: 1px solid black;
}
</style>
<table>
<tr><td><strong>Contact name: </strong></td><td>{data:contact_name}</td></tr>
<tr><td><strong>E-mail: </strong></td><td>{data:contact_email}</td></tr>
<tr><td><strong>Phone: </strong></td><td>{data:contact_phone}</td></tr>
<tr><td><strong>School name: </strong></td><td>{data:school_name}</td></tr>
<tr><td><strong>School address: </strong></td><td>{data:school_address}</td></tr>
<tr><td><strong># of debaters: </strong></td><td>{data:debaters}</td></tr>
<tr><td><strong># of tickets: </strong></td><td>{data:vvs}</td></tr>
<tr><td><strong>Debater names: </strong></td><td>{data:debater_names}</td></tr>
<tr><td><strong>ESL speakers: </strong></td><td>{data:ESL}</td></tr>
<tr><td><strong>Native speakers: </strong></td><td>{data:native}</td></tr>
<tr><td><strong>Dietary requirements: </strong></td><td>{data:dietary_requirements}</td></tr>
<tr><td><strong>Total fees: </strong></td><td><strong>{data:total}</strong></td><tr>
</table>
<p><h2>Please note!</h2></p>
<p>The amount shown is due on <strong>30th OCT 2018</strong>. Please transfer the fees to the following bank account:</p>
<p>Debating Society Germany e.V.<br>
IBAN XXX XXX XXX<br>
BIC: DEUTDEDBSTG<br>
Subject: YOUR SCHOOL TEAM EurOpen 2018<br>
<p>Thanks and see you soon!</p>
</body>
</html>
If I put it in the main body, I get the whole thing twelve times.
So I thought I'd put it *just* in the header - works, but if the main body is empty, I get the automated list again, and twelve times. So I put the main text in the header and just the last line in the main body with this ridiculous result:

🤣🤣
So, I emptied all the fields and just disabled Auto Add Fields entirely and just put the above programming in the body section. That seems to be working now. Luckily, I can do some HTML and it's not a long form.
Thanks for any ideas, still, and your help!
Christopher