Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what are the differents between 'action' and 'target' in
form tag?

Answers were Sorted based on User's Feedback



what are the differents between 'action' and 'target' in form tag?..

Answer / 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

what are the differents between 'action' and 'target' in form tag?..

Answer / sherin

action means the url to be executed when the form submits .
If the form is to be submited through iframe the target tag
specifies the name of the iframe .

Is This Answer Correct ?    9 Yes 0 No

what are the differents between 'action' and 'target' in form tag?..

Answer / 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

More PHP Interview Questions

What is oops php?

0 Answers  


What is the use of explode() function?

0 Answers  


How do you define a constant in php?

0 Answers  


What is cookies? How to create cookies in php?

0 Answers  


What is MIME?

1 Answers  


Where is session value stored php?

0 Answers  


How do i explode this string '||25||34||73||94||116||128' i need to have a array like this array ( 0 => '25', 1 => '34', 2 => '73', 3 => '94', 4 => '116', 5 => '128' ) explode("||", $array); didnt work for me i get this array array ( 0 => '', 1 => '25', 2 => '34', 3 => '73', 4 => '94', 5 => '116', 6 => '128', )

2 Answers  


Explain what does $_server means?

0 Answers  


What is the use of return in php?

0 Answers  


How do you destroy a particular or all Sessions?

0 Answers  


Explain how is it possible to set an infinite execution time for php script?

0 Answers  


What is the difference between single-quoted and double-quoted strings in php?

0 Answers  


Categories