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
- php
- 내추럴그로서리
- Life Church
- carrot 당근
- 삼겹살 김치 먹방
- 미국인 삼겹살
- healthy food 건강음식 #과카몰리 #두부
- kabocha 호박
- Ages
- Natural Grocers
- 스마트하게 견과류 챙겨먹기
- 그리스알파벳
- 비타민
- 최종당화산물
- Worship Song
- 군산황금박대
- Oklahoma
- 오미크론Omicron
- Advanced Glycation End Products
Archives
- Today
- Total
oklahomama
Functions and PHP Call the Functions 본문
<!DOCTYPE html>
<html>
<body>
<?php
function sayHi($name, $age){
echo "Hello, $name, you are $age years old.<br>";
}
sayHi("Amy", 4);
sayHi("Tom", 30);
sayHi("Eithen", 40);
?>
</body>
</html>
Hello, Amy, you are 4 years old.
Hello, Tom, you are 30 years old.
Hello, Eithen, you are 40 years old.
'Code > PHP' 카테고리의 다른 글
Laravel 로 Website 를 만들었다. (0) | 2022.03.20 |
---|---|
Return Statements (0) | 2022.03.15 |
PHP Date function (0) | 2022.02.23 |
오늘 재미삼아 파워볼 랜덤넘버 제너레이터를 PHP programming 을 이용하여 만들었다. ( I made a random number generator with PHP for fun!!) (0) | 2022.01.28 |
Comments