zoukankan      html  css  js  c++  java
  • PHP表单的提交,以及表单元素的HTML语法

    <?php // formtest2.php
    if (isset($_POST['name'])) $name = $_POST['name'];
    else $name = "(Not entered)";
    
    echo <<<_END
    <html>
        <head>
            <title>Form Test</title>
        </head>
        <body>
        Your name is: $name<br />
        <form method="post" action="formtest.php">
            What is your name?
            <input type="text" name="name" />
            <input type="submit" />
        </form>
        </body>
    </html>
    _END;
    ?>
    
    <form method="post" action="calc.php"><pre>
          Loan Amount <input type="text" name="principle" />
    Monthly Repayment <input type="text" name="monthly" />
      Number of Years <input type="text" name="years" value="25" />
        Interest Rate <input type="text" name="rate" value="6" />
                      <input type="submit" />
    </pre></form>
    
       Vanilla <input type="checkbox" name="ice" value="Vanilla" />
     Chocolate <input type="checkbox" name="ice" value="Chocolate" />
    Strawberry <input type="checkbox" name="ice" value="Strawberry" />
    
       Vanilla <input type="checkbox" name="ice[]" value="Vanilla" />
     Chocolate <input type="checkbox" name="ice[]" value="Chocolate" />
    Strawberry <input type="checkbox" name="ice[]" value="Strawberry" />
    
    8am-Noon<input type="radio" name="time" value="1" />|
    Noon-4pm<input type="radio" name="time" value="2" checked="checked"/>|
     4pm-8pm<input type="radio" name="time" value="3" />
     
     Vegetables <select name="veg" size="1">
    <option value="Peas">Peas</option>
    <option value="Beans">Beans</option>
    <option value="Carrots">Carrots</option>
    <option value="Cabbage">Cabbage</option>
    <option value="Broccoli">Broccoli</option>
    </select>
    
    
    Vegetables <select name="veg" size="5" multiple="multiple">
    <option value="Peas">Peas</option>
    <option value="Beans">Beans</option>
    <option value="Carrots">Carrots</option>
    <option value="Cabbage">Cabbage</option>
    <option value="Broccoli">Broccoli</option>
    </select>
  • 相关阅读:
    CSS页面渲染优化属性will-change
    前端自动化构建工具-yoman浅谈
    【积累】如何优雅关闭SpringBoot Web服务进程
    SpringCloud Eureka Client和Server侧配置及Eureka高可用配置
    SpringBoot返回html页面
    MySQL8主从配置
    使用Arrays.asList抛出java.lang.UnsupportedOperationException
    SpringMVC+Mybatis+MySQL8遇到的问题
    MySQL5.6启用sha256_password插件
    Base64简单原理
  • 原文地址:https://www.cnblogs.com/findumars/p/2910628.html
Copyright © 2011-2022 走看看