SELECT UNIX_TIMESTAMP(date) FROM board;

2014-10-15 12:45:03 -> TIMESTAMP 값으로 변환한다

'database, query' 카테고리의 다른 글

메일주소 포함된 필드 찾기  (0) 2015.02.17
datetime 필드 검색  (0) 2014.11.12
페이징시 유효한 FOUND_ROWS();  (0) 2014.10.09
mysql table / column(type) 변경  (0) 2014.10.08
mysqldump(백업)  (0) 2014.10.08
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* php.ini

postmaxsize 확인
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<script type="text/javascript">
$(document).ready(function() {
	var ww = $(document).width();
	var wh = $(document).height();
	$(".image").attr({"width":ww, "height":wh});
});
</script>

'javascript, jquery' 카테고리의 다른 글

클래스(.class)명 검사해서 처리하기  (0) 2014.10.18
jquery CDN  (0) 2014.10.14
체크박스 전체선택 / 해제  (0) 2014.10.11
$.cookie / $.removeCookie - 쿠키 제어하기  (0) 2014.10.11
팝업 레이어 설정하기  (0) 2014.10.11
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?
$nowDay = date("Y-m-d",time());
$startDay = "2014-10-01";
$endDay = "2014-10-31";

if($startDay <= $nowDay && $endDay >= $nowDay) { ?>

<script type="text/javascript">
	window.open('open.html', '_blank', 'width=100, height=100, left=0, top=0, scrollbars=no, status=no');
</script> 
<? } ?>

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 제목 크기

<h1> ~ <h6>
<h1>h1. Bootstrap heading</h1>

* 작은 텍스트

<small>This line of text is meant to be treated as fine print.</small>

* 문단강조

<p class="lead">...</p>

* 문단정렬

<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>

* 문단효과

<p class="text-muted">...</p> // 연하게
<p class="text-primary">...</p>
<p class="text-success">...</p>
<p class="text-info">...</p>
<p class="text-warning">...</p> // 경고
<p class="text-danger">...</p>

* 텍스트 툴팁

<abbr title="attribute">attr</abbr>
<abbr title="HyperText Markup Language" class="initialism">HTML</abbr> // 툴팁글자크기 90%

 

 

블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/lib/bs/css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="/js/jquery-1.11.1.js"></script> // 기본적으로 jquery 포함해야 함
<script src="/lib/bs/js/bootstrap.min.js"></script>
<script src="/lib/bs/js/respond.js"></script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,