Editing: paul.php
Kembali
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Product Description</title> <link rel="stylesheet" href="css/style.css" type="text/css"/> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="css/style.css" type="text/css"/> </head> <body> <main> <div class="container"> <h2> Add A Product</h2> <form method="post" action="mass.php" enctype="multipart/form-data"> <p> <label>Product Pame</label> <input type="varchar" name="p_name" /> </p> <p> <label>Product Description:</label> <input type="text" name="p_desc" /> </p> <p> <label>Please upload Product Image File:</label> <input type="file" name="image"> </p> <p> <input type="submit" name="submit" value="submit"/> </p> </form> </div> </main> </body> </html>
SIMPAN PERUBAHAN