How to create additional forms for users to fill in and write the whole thing into the database?
<script type="text/javascript"> function forma() { var div = document.getElementById('Result'); div.style.display = (div.style.display == 'none') ? '' : 'none'; div.innerHTML = '<?echo '<b>Ф.И.О./Ник:</b> <input type=text name=name size=50 value=""/>';?>'; } </script> echo '<a href onclick="forma(); return false;">Добавить игрока/команду</a>'; echo '<div id="Result" style="display: none"></div>';
So only one form is created.