Computer Science, asked by ganeshpayg901, 9 months ago

1) Write a program using HTML to create a form and submit it with personal data like name,
address and standards.​

Answers

Answered by shreshthkant
20

Answer:

<html>

<head>

<title>form answer</title>

</head>

<body>

<form method="post" action="phpfile.php">

<input type="text" name="name" placeholder="name">

<input type="text" name="address" placeholder="address">

<input type="text" name="standards" placeholder="standards">

<input type="submit" name="submit" placeholder="submit">

</form

</body>

Explanation:

this is a basic html file. it has a <form> tag in the <body>, the <form> sends the information when the send button is clicked.if you want the php file code also, please reply on this answer.

Similar questions