PHP ?? ??
PHP ??
PHP ????? ???? ???? ?? HTML ??? ????? ?? ?????.
?? PHP ??
PHP ????? ??? ?? ??? ??? ? ????.
PHP ????? <?php? ???? ?>? ????.
<?php // PHP 代碼 ?>
PHP ??? ?? ?? ???? ".php"???.
PHP ???? ????? HTML ??? ?? PHP ???? ??? ???? ????.
????? "Hello World!"?? ???? ????? ??? ? ?? ??? PHP ?? ??? ?????.
? (1)
<!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php echo "Hello World!"; ?> </body> </html>
?( 2 )
<!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php echo "my php!"; ?> </body> </html>
? (3)
<!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php print "my php!"; ?> </body> </html>
PHP? ?? ?? ?? ?????? ??? ???. ????? ??? ??? ???? ? ???? ?? ?????.
PHP? ?? ????? ???? ???? ? ?? ?? ??? echo? print? ????.
PHP? ??
?
<!DOCTYPE html> <html> <body> <?php // 這是 PHP 單行注釋 /* 這是 PHP 多行 注釋 */ echo "Hello World!"; //echo "Hello World!"; /*echo "Hello World!"; */ ?> </body> </html>
??:
PHP ??? ?? ??? ??? ???. ??????. ????? ??? ??? ???? ? ???? ?? ?????.
PHP? ?? ????? ???? ???? ? ?? ?? ??? echo? print? ????.
?? ????? print? echo? ??? ?? ?????.
??? ???? ??? ? ??? ?? ??? ??? ? ??? ? ? ????. ??? ? ???? ??? ?? ??? ???? ????.
echo ????? ?? ???? ??? ??? ? ???, print ????? ??? ??? ???? ??? ? ????. ???, echo ???? ??? ???? ???? echo ??? ??????? ???? ? ?????.
??? ? ??????.