수업소개
PHP의 조건문을 활용해서 웹 애플리케이션의 기능을 개선하는 모습을 살펴봅니다.
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 29 30 31 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <title></title> </head> <body> <h1><a href= "index.php" >WEB</a></h1> <ol> <li><a href= "index.php?id=HTML" >HTML</a></li> <li><a href= "index.php?id=CSS" >CSS</a></li> <li><a href= "index.php?id=JavaScript" >JavaScript</a></li> </ol> <h2> <?php if (isset( $_GET [ 'id' ])){ echo $_GET [ 'id' ]; } else { echo "Welcome" ; } ?> </h2> <?php if (isset( $_GET [ 'id' ])){ echo file_get_contents ( "data/" . $_GET [ 'id' ]); } else { echo "Hello, PHP" ; } ?> </body> </html> |