Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- data structure
- CSS
- architecture
- github
- system
- Java
- Linux
- Class
- html
- XML
- Algorithm
- MacOS
- control
- for
- DS
- Pipelining
- while
- php
- web
- instruction
- react
- function
- DoM
- DATAPATH
- python
- computer
- mysql
- javascript
- DB
- MIPS
Archives
- Today
- Total
YYYEJI
[PHP] PHP 출력문 본문
728x90
PHP(Hypertext Preprocessor)란?
대표적인 서버 사이드 스크립트 언어로 전 세계 수많은 웹 시스템의 기반이 되는 언어입니다.
출력은 echo 또는 print로 할 수 있습니다.
<!EOCTYPE html>
<body>
<h1>My first PHP page</h1>
<?php
echo "<p>Hello world1</p>";
print "Hello world 2";
?>
</body>
NOTE) PHP는 HTML의 tag를 이용해서 다양한 출력을 할 수 있습니다.
◡̈
'HTML(or XML) & CSS & JavaScript' 카테고리의 다른 글
[PHP] 문자열 합치기 (String concatenation) (0) | 2022.12.12 |
---|---|
[PHP] PHP 변수의 Scope (0) | 2022.12.12 |
[HTML] Table 열, 행 merge 시키는 태그 (0) | 2022.11.12 |
[HTML] Table 기본 태그 정리 (0) | 2022.11.12 |
[HTML] Ordered List의 Special Marker (0) | 2022.11.12 |