250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- IOS
- hover
- button
- 비전공 개발자
- iOS 개발자
- 자바스크립트
- javascript
- react
- css3
- 프론트엔드
- MAC
- 개발자
- jQuery
- 백엔드
- HTML
- front-end
- html5
- image
- effect
- ipad
- 애니메이션
- CSS
- xcode
- 풀스택
- Animation
- SWIFT
- 비전공자
- iPhone
- keyframes
- php
Archives
- Today
- Total
비전공자 개발일기
PHP with if condition 본문
728x90
SMALL
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WEB</title>
</head>
<style>
* {
text-align: center;
}
</style>
<body>
<h1>IF with PHP</h1>
<?php
$num = 101;
if($num == 100) {
?>
100이 보이는 버튼<br>
<button type="button">100점</button>
<?php } else {?>
100이 아닌 숫자가 보이는 버튼<br>
<button type="button">NG</button>
<?php } ?>
</body>
</html>
728x90
LIST
'PHP' 카테고리의 다른 글
WHILE, FOR, FOREACH in PHP (0) | 2022.01.02 |
---|---|
SWITCH CASE with PHP (0) | 2022.01.01 |
PHP with Select Option (0) | 2021.12.30 |
PHP & jQuery checkbox 활용 (0) | 2021.12.29 |
PHP 5일차 (0) | 2021.12.25 |