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} 입니다. ");
?>
'PHP 공부 기록' 카테고리의 다른 글
(수정중) PHP 5 - 배열 (0) | 2021.11.23 |
---|---|
PHP 4 - 폼(Form) (0) | 2021.11.19 |
PHP 3 - 반복문(1) (WHILE, DO..WHILE, FOR, Continue) + 소수 판별 프로그램 (0) | 2021.11.05 |
PHP 2 - 조건문 (IF, SWITCH) (0) | 2021.10.29 |
PHP 1 - 변수와 연산자 (0) | 2021.10.22 |