웹마스터 팁

지금까지 올라온 체널 소스들을 응용해 봅시다. -_-;

tmain.php

<?
switch($tdb)
{
case "test":
include "test.php";
break;

default:
include "기본적으로 표시될 파일"; // index
}
?>

test.php

<?
switch($db){

case(src):
echo "kkk.";
break;

case(ccc):
echo "ttt.";
break;


default:
echo "요청하신 ".$db."가 존재하지 않습니다.";

}
?>

그런 뒤에 tmain.php?tdb=test&db=src를 쓰면 'kkk'라는 메세지가 뜨고,

tmain.php?tdb=test&db=ccc를 쓰면 'ttt'라는 메세지가 뿌려집니다.

그리고 test.php에서 지정하지 않은 DB 이름이면 에러가 뿌려집니다.

예제 : http://sayq.new21.org/powerlab/tmain.php?tdb=test&db=ccc
http://sayq.new21.org/powerlab/tmain.php?tdb=test&db=src

http://sayq.new21.org/powerlab/tmain.php?tdb=test&db=locknlock (지정되지 않은 DB이기 때문에 에러뿌립니다.)

tmain.php에서

case "test":
include "test.php";
break;

줄을 더 추가하면 (case와 include 칸은 수정이 되어야 하지만) tmain.php?tdb=kor 식도 될것 같네요.

내용이 너무 빈약해 무슨 소린지 하나도 모르는 분이 허다할듯..(이미 여러번 올라왔던것이므로)

벌레의 가능성은 언제나 존재합니다. -_-;

==============추가

만약 tmain.php의 이름을 index.php로 바꾼다고 할때는 http://도메인/(경로)/?tdb=test&db=src 식으로 써주시면 됩니다.
마치 어떤 자료실 사이트에서 search.php?db=software&cat=crossword 식으로 하듯이 말입니다.

참.. 응용하시면 3개고 4개고 더 만드실 수 있거든요? '&'으로 연결해주시면 됩니다.