HTML 먼저 공부하고 진행하기

HTML 파일 내에서 PHP 실행

 

예제 1

<html> 
<head> 
<title>0-1.html</title> 
<meta http-equiv="content-type" content="text/html; charset=euc-kr"> 
</head> 
<body>
<hr> 
<?
   $a = 1;
   $b = 2;
   $c = $a + $b;
   echo("두 수의 합은 {$c}입니다.");
?>
<hr> 
</body> 
</html>

페이지 소스코드

페이지 소스코드는 위와 같이 PHP 파서에서 변경된 것을 확인할 수 있다.

 

예제 2

<html> 
<head> 
<title>0-1.html</title> 
<meta http-equiv="content-type" content="text/html; charset=euc-kr"> 
</head> 
<body>
<?
   $a=1;
   $b=2;
   $c=$a+$b;
?>
<table border="1">
  <tr>
     <td align="center" width="140" height="10" colspan="2">
     <? echo("\$a=$a, \$b=$b"); ?> </td>
  </tr>
  <tr>
     <td width="120" height="10">두 수의 합은 </td>       
     <td width="20" height="10"><? echo("{$c}"); ?></td> 
  </tr>
</table> 
</body> 
</html>

예제 3

.html

<html> 
<head> 
<title>0-3.html 폼파일</title> 
<meta http-equiv="content-type" content="text/html; charset=euc-kr"> 
</head>

  <form method="post" action="0-3.php">
     입력 값 : <input type="text" name="in"><br>
        <input type="submit" name="확인" value="확인"> 
        <input type="reset" name="취소" value="취소"><br> 
  </form> 
</html>

.php

<?  
  $in = $_POST["in"];  
  echo(" 입력된 값은 {$in} 입니다. "); 
?>

+ Recent posts