티스토리 뷰

Web

코딩야학(19일) - PHP 실습

광그로 2017. 6. 21. 19:03
1
2
3
4
<?php
echo $_GET{'name'}.",".$_GET{'id'};
 ?>
 
cs


전달받을 인자가 여러개일 경우, "...?name=rhkd&id=rmfh"와 같이 ?와 &를 이용한다



1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>
    </title>
  </head>
  <body>
    <?php
    echo file_get_contents ($_GET['id'].".txt");
id와 동일한 이름을 가지고 있는 txt파일의 내용을 출력해!
     ?>
  </body>
</html>
 
cs



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
32
33
34
35
<!DOCTYPE html>
<html>
<head>
     <meta charset="utf-8">
  <link rel="stylesheet" type="text/css" href="http://localhost/style.css">
</head>
<body id="target">
    <header>
    <img src="https://s3.ap-northeast-2.amazonaws.com/opentutorials-user-file/course/94.png" alt="생활코딩">
        <h1><a href="http://localhost/tmp3/index.php">JavaScript</a></h1>
  </header>
    <nav>
        <ol>
    <?php
      echo file_get_contents("list.txt");
      nav에 list.txt를 읽어서 출력해라
    ?>
        </ ol>
    </nav>
  <div id="control">
    <input type="button" value="white" onclick="document.getElementById('target').className='white'"/>
    <input type="button" value="black" onclick="document.getElementById('target').className='black'" />
  </div>
  <article>
  <?php
    if( empty($_GET['id']) == false ) {
      id값이 없으면 file을 읽을  없다.
      echo file_get_contents($_GET['id'].".txt");
id값과 동일한 이름을 가진 txt 파일을 article에 출력하여라
    }
    
  ?>
  </article>
</body>
</html>
 
cs



공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함