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
What is class extend in php?
Which is better get or post method?
Where to put php files in apache server?
What is regular expression in php?
Which have the fastest execution between mysql_fetch_array() and mysql_fetch_assoc()
What are the variables in php?
Which is not a file-related function in php?
Is apache needed for php?
What is difference between print_r and echo in php?
What are the differences between mysqli_connect and mysqli_pconnect?
Which function would you use to determine the length of a string in php?
How to set session.gc_divisor properly?
What does $this do in php?
What is the use of "echo" in php?
What is basename php?