티스토리 뷰
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 |
'Web' 카테고리의 다른 글
윈도우 mysql 비밀번호 재설정 (0) | 2017.06.21 |
---|---|
코딩야학(16일) - 자바스크립트 실습 (0) | 2017.06.19 |
코딩야학(추가) (0) | 2017.06.19 |
코딩야학(13일) - 로그인 기능 만들기, 배열 (0) | 2017.06.19 |
코딩야학(12일) - 디버깅, 변수, 비교, 조건문 (0) | 2017.06.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- UIView Animation
- 생활코딩
- 데이터 바인딩
- Add TapGesture
- Custom Cell
- 백준온라인
- 타일링
- WPF
- 코딩야학
- 객체
- CustomCollectionViewCell
- 백준
- CollectionView
- listview
- DP
- FEED
- 스택
- Grid
- dfs
- 그래프
- Cell Animation
- command
- BOJ
- 문자열
- Fakebook
- BFS
- C++
- XAML
- MVVM
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함