文章加密

;

2018年7月4日 星期三

HTML 多媒體頁面 各種雜項知識

1. 多媒體頁面
2. 各種雜項知識


<hr size="6px" noshade />

<s>文字會有中間刪除線</s>

<font face="微軟正黑體">文字字體</font>

<nobr>文字內容不自動換行</nobr>

<center>內容置中</center>

<div>division區段的縮寫</div>


3.圖像映射案例






4.fieldset

2018年7月3日 星期二

HTML 框架 表單

前台多用iframe


中山國中站


https://rent.housefun.com.tw/rent/house/1375052/
租  金:
25,000 元 / 月
建物格局:
3房(室)2廳2衛

https://rent.housefun.com.tw/rent/house/1228314/
租  金:
7,500 元 / 月
建物格局:
1房(室)0廳1衛

https://rent.housefun.com.tw/rent/house/1363578/
6,000 元 / 月
建物格局:
1房(室)1廳1衛
女室友合租 1房1廳大套房 民生社區 個人工作室(房屋編號:CC363578)

2018年7月2日 星期一

Firefox Developer Tools

https://developer.mozilla.org/son/docs/Tools

https://developer.mozilla.org/en-US/docs/Tools/Debugger

2018年6月29日 星期五

PHP document不懂與新學的地方

https://www.youtube.com/watch?v=ROZfJ7svQH0
youtube教學

http://php.net/manual/en/control-structures.do.while.php

1. do {...} while (0);(不懂)

<?phpdo {
    if (
$i 5) {
        echo 
"i is not big enough";
        break;
    }
    
$i *= $factor;
    if (
$i $minimum_limit) {
        break;
    }
   echo 
"i is ok";

    
/* process i */} while (0);?>
Don't worry if you don't understand this right away or at all. You can code scripts and even powerful scripts without using this 'feature'. Since PHP 5.3.0, it is possible to use goto operator instead of this hack.


2.   for loop條件可以空著另外寫,或寫兩個以上條件

for ($i 1$j 0$i <= 10$j += $i, print $i$i++);

for($i 0$size count($people); $i $size; ++$i) {
    
$people[$i]['salt'] = mt_rand(000000999999);
}


3. Looping through letters is possible.

for($col = 'R'; $col != 'AD'; $col++) {
    echo $col.' ';
}

returns: R S T U V W X Y Z AA AB AC

Take note that you can't use $col < 'AD'. It only works with !=
Very convenient when working with excel columns.