Coding

本頁大綱
PHP
Mysql
HTML
CSS


PHP
AA


Mysql
◎只想要查前幾筆資料 (前12筆資料)
>> SELECT * FROM `orderdata`  ORDER BY `orderdata`.`order` DESC  Limit 12

 
◎改資料表名稱
>> ALTER TABLE "舊名稱"  RENAME TO "新名稱"


HTML
◎文章太長,設標籤連結可以切換到該段落。
被連結的<a href="#" name="tag">,要點過去的<a href="當前網址#tag">

◎HTML的 input按鈕大小、字型大小
<input  type="submit"  style="width:80px;height:50px;font-size:24px;"  />

Ⓞinput text 文字輸入,灰字提醒輸入
<input  type="text"   placeholder="請輸入...">

◎表格不要有內框,然後字不要貼近邊框
<table border=1px rules="all" cellpadding="4">

◎input type
<input type="text" ......>
<input type="password"......>
<input type="sumbit"......>
<input type="reset"......>
<input type="radio"......>
<input type="checkbox"...... checked > 預設已勾選
<input type="button"......>
<input type="hidden"......>隱藏欄位,可用來帶參數


CSS
淺灰虛線
ul li  { margin:0; padding:0; border-bottom:1px dashed #e9e5e5;}

input radio/checkbox 變大
input[type=radio] {transform: scale(1.5); }

沒有留言:

張貼留言