what are the differents between 'action' and 'target' in
form tag?
Answer Posted / sujendra kumar
<form action="target"> ... </form>
ACTION attribute. This is a required attribute. This
attribute specifies where the data collected by the form is
to be sent. The destination could be an email address, e.g.,
action="mailto:BillG@lunix.net"; a URL, e.g.,
action="../index.htm"; a CGI script on your web server,
e.g., action="/cgi-sys/formmail.pl"; or an Active Server
page that will process the data, e.g.,
action="mysearch.asp", to name a few possibilities. This is
the one truly complicated issue concerning forms, and will
be addressed below in its own section.
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
What types of MYSQL function available for affecting columns
What is composer json?
Why use php artisan serve?
Can I learn php without knowing c?
What is the correct and the most two common way to start and finish a php block of code?
How do I repair phpmyadmin?
What is mvc php?
What beforeFilter() is used?
What is the use of count() function in php?
What are the difference between overloading and overriding in oops?
Write logic to print Floyd's triangle in PHP?
What is data type in php?
Can you use php and javascript together?
What is the current php version?
How to increase the execution time of a PHP script?