PHP设计模式之简单投诉页面实例(2)

<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <title>PHP设计模式</title> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0"> <style> div{border:solid gray 1px;margin-top:10px;height: 100px;width: 200px;} </style> </head> <body> <form action="0.php" method="post"> <h1>用户名</h1> <select> <option value="Tom">Tom</option> <option value="Lily">Lily</option> </select> <h1>投诉方式</h1> <select> <option value="Normal">Normal</option> <option value="Danger">Danger</option> </select> <select> <option value="Email">Email</option> <option value="Sms">Sms</option> </select> <h1>处理级别</h1> <select> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <h1>投诉内容</h1> <textarea rows="3"></textarea> <button type="submit">提交</button> </form> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/fc3d88e40911d1ea23995ec7d054b5dd.html