Giken Dev
article thumbnail
반응형

https://opentutorials.org/course/62/5116

 

첫번째 PHP 에플리케이션 - 생활코딩

예제 /firstapp/helloworld.php  https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld.php <!--?php echo "Hello world"; ?--> /firstapp/helloworld2.php https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld2.php echo "Hello

opentutorials.org

예제

/firstapp/helloworld.php 

https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld.php

1
2
3
<?php
echo "Hello world";
?>

/firstapp/helloworld2.php

https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld2.php

1
2
3
4
5
6
7
8
<html>
<body>
echo "Hello world";
<?php
echo "Hello world";
?>
</body>
</html>

 그림 설명

 

helloworld.php의 localhost 를 통한 주소로 접속하여

웹 페이지의 코드를 살펴봅니다.

<?php   와   ?> 로 감싼 부분과, 그렇지 않은 부분의 차이점에 주목합니다.

반응형
profile

Giken Dev

@기켄

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!