2019~2020/웹 프로그래밍 (PHP)
화면에 출력하기
유진
2019. 8. 25. 17:40
반응형
<!doctype html>
<html lang="en">
<head>
<title>화면에 출력</title>
</head>
<body>
<?php
echo("Hello<br>");
echo("PHP의 세계에 오신 것을 환영합니다.<br>");
print("우리 함께 PHP로 여행을 떠나요 *^^*");
?>
</body>
</html>
반응형