what are the differents between 'action' and 'target' in
form tag?
Answer Posted / ram
Action:
Action attribute specifies where to send the form-data when
a form is submitted.
Syntax: <form action=”value”);
Example: <form name="email_check" method="post"
action="formValidation.php">
Target:
The target attribute specifies where to open the action URL.
Syntax: <form target="value">
Value:
_blank – open in new window
_self- Open in the same frame as it was clicked
_parent- Open in the parent frameset
_top- Open in the full body of the window
Framename- Open in a named frame
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Tell me what is the actually used php version?
What are php magic methods/functions?
What is strstr php?
Is it more secure to use cookies to transfer session ids?
Is it difficult to learn php?
What is the difference between characters 34 and x34?
What is file upload?
What is the function func_num_args() used for?
What new features php7 has in store for us?
What is varchar mysql?
Is it possible multiple inheritance in php?
What are the advantages of php mysql?
How we load all classes that placed in different directory in one php file , means how to do auto load classes.
How to run the interactive php shell from the command line interface?
Which function can be used to exit from the script after displaying the error message?