DB/๐PHP
๐์น์ฌ์ดํธ์ ๋นํ์ธ๋ PHP : ์กฐ๊ฑด๋ฌธ์ ํ์
4:Bee
2023. 9. 4. 00:44
728x90
| YouTube Link | |
| WEB2-PHP-12.แแ ฉแแ ฅแซแแ ฎแซแแ ด แแ งแผแแ ตแจ | |
| https://youtu.be/ZvhFgNsufHg?si=iUd76Fv8NWVAfg_2 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Conditional</h1>
<h2>if</h2>
<?php
echo '1<br>';
if (false) {
echo '2-1<br>';
} else {
echo '2-2<br>';
}
echo '3<br>';
?>
</body>
</html>

728x90