answersLogoWhite

0

For send:

You can use HTML

action Attribute and GET or POST methods.

method="get">

First name:

Last name:

for text area you can use

For retrieve:

Depends on choosed methods you can retrieve transfered data by using $_GET or $_POST in your PHP code

example.htm?myname=Dave

$MyName = $_GET['myname'];

echo "myname = $MyName";

...

?>

For more info please see the links attached.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How does computer send data through serial port?

how does computer send data through serial port?


What is the difference between analog data and wireless data?

Analog data can be send through a wire = wired data Analog data can be send through the air = wireless data). "Wireless data", as in: "data travelling through the air" is always analog because it propagates as a continuous EM wave through the air


What is roaming auto-retrieve?

what does roaming auto- retrieve mean? can you retrieve the sms pictures send to you by ticking this


How do you access a PowerPoint document on an iPad?

The best way is to send the document to your e-mail as an attachment and retrieve it that way through your iPad.


What does a computer allow you to do?

a compouter allows you to play games and research things. nuff said


How can a data organized be accessed and use?

Data can be accessed and used by querying the database or data storage system where it is stored. This typically involves using a programming language or tool to send requests to retrieve, manipulate, or analyze the data. Accessing data can also involve using APIs or data integration tools to connect to external data sources.


When you send an email message it is stored on a until the recipient can retrieve it?

Server act as a virtual post office for email. It stores emails that you send to other person until he retrieve it.


Why is it important to use virtual private network to send sensitive data?

Because now a days it is cheep and from vpn you can send the data securely. Because VPN split the datas into smaller cells as well send it through different routes. Because now a days it is cheep and from vpn you can send the data securely. Because VPN split the datas into smaller cells as well send it through different routes.


Which email address can you send PII to?

unclassified data must marked as such if stored in a classified area


How do you send some information or data through internet?

There are many ways, but the most accepted and easiest is through Email.


To send data through a network what two flags are used to establish a session?

ack & syn


How do you create a web form to collect data?

Use the HTML <form> tag, setting its "action" attribute to the address of the page that the data will be sent to. Each form item should have a name attribute, and the submit button will send the data to the receiving page. This receiving page must use code to retrieve the data. The most common language is PHP, where you can use the $_GET[] and $_POST[] variables to retrieve the data. You can specify whether to use GET or POST in the <form> tag - the method attribute can be set to either "get" or "post". Any other value is invalid in W3C code. GET sends the data through the URL of the page, while POST sends the data behind the scenes. This makes it securer, but more difficult for the user to bookmark the page.