Let's say I enter a registration form with this ending URL: registration.php?accountType=a
The form is parsed on the same page (registration.php). If the user doesn't pass form validation they are taken to registration.php with error messages. So you see I lost my variable accountType=a. My question:
Ben doğrulama için bir formu ve AccountType değişken koruyabilirsiniz? Ben bu kolayca bir cookie kullanarak yapılabilir farkındayım. Ben sadece daha iyi anlaşılmasını istiyorum.
Aşağıdaki tüm cevapları geçerli olmasına rağmen Solution:, ben bir oturum değişkeni ve yardım için <form action="registration.php?<?php print 'accountType=' . $_SESSION['accountType']; ?>"
vb Teşekkür gitti.