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
Answer:
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
Answer:
<!DOCTYPE html>
!DOCTYPE html><html>
!DOCTYPE html><html><head>
!DOCTYPE html><html><head> <title></title>
!DOCTYPE html><html><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
!DOCTYPE html><html><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head>
!DOCTYPE html><html><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body>
!DOCTYPE html><html><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <form method='POST'>
!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>
!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">
!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">
!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>
!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
!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
!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'];
!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>";
!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>";?>
!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>
!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>
!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>Sample Output: