프로그래밍

게시판2

wonjae 2022. 3. 6. 12:13

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<?php 
$table1 = "free";
$table2 = "qna";
?>

<h3>자유게시판</h3>
<a href="board_view.php?table=<?=$table1?>&type=list"> 목록보기</a>
<br>
<a href="board_view.php?table=<?=$table1?>&type=write"> 글쓰기</a>

<h3>질의응답 게시판</h3>
<a href="board_view.php?table=<?=$table2?>&type=list"> 목록보기</a>
<br>
<a href="board_view.php?table=<?=$table2?>&type=write"> 글쓰기</a>
</body>
</html>

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<?php 
$table = $_GET["table"];
$type = $_GET["type"];

if ($table == "free")
$board_title = "자유게시판";
if ($table == "qna")
$board_title = "질의응답 게시판";

if ($type == "list")
$type_title = "목록보기";
if ($type == "write")
$type_title = "글쓰기";
?>

<h3>
<?php
echo ">> ".$board_title." | ".$type_title;
?>
</h3>
</body>
</html>