Computer Science, asked by ashwinhire87gmailcom, 2 months ago

Write a PHP script to create a form to accept customer information (name, address, ph-no). Once the customer information is accepted, accept product information in the next form (Product name, qty, rate). Display the bill for the customer in the next form. Bill should contain the customer information and the information of the products entered. ​

Answers

Answered by jassi1178
3

Answer:

: A webform or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can resemble paper or database forms because web users fill out the forms using checkboxes, radio buttons, or text fields. For example, forms can be used to enter railway or credit card data to purchase a product, or can be used to retrieve search results from a search engine.

Answered by Rizakhan678540
23

Answer:

Create a simple HTML form and accept the user name and display the name through PHP echo statement.

HTML form:

A webform or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can resemble paper or database forms because web users fill out the forms using checkboxes, radio buttons, or text fields. For example, forms can be used to enter railway or credit card data to purchase a product, or can be used to retrieve search results from a search engine.

Sample Solution: -

PHP Code:

  • <!DOCTYPE html>
  • <html>
  • <head>
  • <title></title>
  • <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  • </head>
  • <body>
  • <form method='POST'>
  • <h2>Please input your name:</h2>
  • <input type="text" name="name">
  • <input type="submit" value="Submit Name">
  • </form>
  • <?php
  • //Retrieve name from query string and store to a local variable
  • $name = $_POST['name'];
  • echo "<h3> Hello $name </h3>";
  • ?>
  • </body>
  • </html>

Attachments:
Similar questions