예제
/firstapp/helloworld.php
https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld.php
1 2 3 | <?php echo "Hello world" ; ?> |
/firstapp/helloworld2.php
https://github.com/egoing/phpeverybody/blob/master/firstapp/helloworld2.php
1 2 3 4 5 6 7 8 | <html> <body> echo "Hello world" ; <?php echo "Hello world" ; ?> </body> </html> |