zoukankan      html  css  js  c++  java
  • 7.9PHP所学知识总结

    AM:复习昨天所学表格的应用

    <table width=”100%“ border="1" cellpadding="10" cellspacing="0">  宽度 border:边界 cellpadding:单元格内文字与边框距离 cellspacing:边距
        <tr>
            <td></td>

       </tr>

    </table>

    PM:表单的学习

    表单:收集用户的输入发送到后台

    提交方式:get(默认)

     form.html?zhanghao=123&mima=qwe

    post在请求里面

    <form action="后台地址"method= “提交方式”>  例:<form action="#”method= “post”> 

    表单元素

    </form>

    表单元素:

    文本类型

      文本框 text

      密码框 password

      隐藏域 hidden

      多行文本 textarea

    选择类型

      单选 radio

      多选 checkbox

      下拉 select           option

    按钮类型

      普通按钮 button

      提交按钮 submit

      重置按钮 reset

    其他类型

      文件file,图片img,日期date,颜色color

  • 相关阅读:
    websocket
    svg vs canvas
    nw
    web sql
    web worker
    【转载】磁盘阵列详解
    【识记】开源软件系列
    【转载】从1.5K到18K 一个程序员的5年成长之路
    SQL中in和not in
    SQL Server select count(distinct *)
  • 原文地址:https://www.cnblogs.com/Prinlily/p/9284510.html
Copyright © 2011-2022 走看看