When I have a form like this:
<form method="post" action=".">
What does the “.” in action stand for?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
actionattributes tell the form where to post the form data to..Stands for current directory, so I would say this posts to the default document in the current directory.There are several notations for relative paths:
..stands for parent directory.stands for current directory/stands for root directory if the URI starts with it/stands for child directory if the URI does not start with it