PHP lesson 9 (chapter 8)
lesson 9Download <?php $customer_type = filter_input(INPUT_POST, 'type'); $invoice_subtotal = filter_input(INPUT_POST, 'subtotal'); switch ($customer_type){ case 'R': case 'r': if ($invoice_subtotal < 100) {…
lesson 9Download <?php $customer_type = filter_input(INPUT_POST, 'type'); $invoice_subtotal = filter_input(INPUT_POST, 'subtotal'); switch ($customer_type){ case 'R': case 'r': if ($invoice_subtotal < 100) {…
lesson 7Download index.html <!DOCTYPE html> <html> <head> <title>Account Sign Up</title> <link rel="stylesheet" href="main.css"/> </head> <body> <main> <h1>Account Sign Up</h1> <form action="display_results.php" method="post"> <fieldset> <legend>Account Information</legend> <label>E-Mail:</label> <input type="text" name="email" value=""…