데이터타입과 연산자 2015-03-27 토픽 생활코딩 > WEB > 웹 애플리케이션 만들기 2.php <!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>javascript</h1> <script> document.write("10"+"10"); </script> <h2>php</h2> <?php echo "10"."10"; ?> </body> </html> 소스코드 github