Hi,I put many tiny forms on one of my pages, all have the same action to return to this page when submitted <form method="post" action="<?php echo $_SERVER; ?>">
but how can I know which one was submitted?
I used this line all this time when I had only 1 form
if (isset($_POST)) {...}
I guess I can use a hidden input and give every form different value and then check it..but is this the correct way to do this? or should I give the form an ID? but I'm not sure how to check it later..?
also is it possible to pass hidden values through GET? the purpose of this is to make sure that if a person sees the url he can't access it if he had no access to the previous page that linked to this page, so I'd like to pass hidden values between pages to make sure that ppl can't access pages by just typing urls..