HTML Tag
HTML의 기본적인 마크업은 doctype : 문서형식의 정의를 명시하는 문서선언 :웹페이지의 표현 : 눈에보이는 내용을 표현 기본적으로 알아야할 태그는 head 기준 meta,title,link,style,script body기준 1. h1,h2,h3,h4,h5,h6 2. p,br,hr 3. a, img 4. ul, li 5. div,span 6. table - table, thead,th,tbody,tr,td 7. form - input,textarea,select 상세한내용은 mdn(https://developer.mozilla.org)을 참조해서 직접 상세내용을 찾아보는것이 좋다. mdn에서 h1태그 검색시 https://developer.mozilla.org/ko/docs/Web/HTML/Ele..
2019. 8. 16.
implode,explode
implode 배열을 구분자를 통해서 문자열로 만든다. implode(구분자,배열) https://www.php.net/manual/en/function.implode.php PHP: implode - Manual It's not obvious from the samples, if/how associative arrays are handled. The "implode" function acts on the array "values", disregarding any keys: 'four', 'five', '3rd' => 'six' );echo implode( ',', $a ),'/', implode( ',', $b );?>outputs:one,two,three/fou www.php.net explode 구..
2019. 6. 20.