본문 바로가기
IT/PHP

[PHP] PHP 복습

by 백승전 2021. 11. 23.

 

개요

 

HTML 작업 중, Header와 Footer, Nav 등 반복적으로 쓰이는 파일을 import / include 해 오는 방법을 모색하다 PHP를 접하게 되어 공부하게 되었습니다.

 

PHP

 

<?php ...... ?>

 

<?php
	echo "이렇게 하면 되나요?";
?>

 

PHP include

 

<?php inlcude 'header.html';>
<?php inlcude 'footer.html';>

 

위 문법과 같이 include 하면 됩니다. 예제로는,

 

<!DOCTYPE html>
<html lang="ko">
<head>
	<?php include 'header.html'; ?>
</head>
<body>
	<?php include 'body.html'; ?>
    
<!-- 이하 본문 -->

	<?php include 'footer.html'; ?>
</body​

댓글