2 주 전 나는 정적 인 웹 페이지에서 동적 인 웹 페이지로 전환하여 삶을 더 쉽게 만들었습니다. 결과는 매일 좋아 보이지만 여전히 해결할 수없는 몇 가지 문제가 있습니다.동적 웹 페이지 : 이전 및 다음 블로그 게시물에 연결하는 방법
다음 목표는 "id"를 기반으로 각 페이지 하단의 두 div에있는 이전 및 다음 블로그 게시물에 대한 링크를 추가하는 것입니다.
각 블로그 게시물의 URL은 ID와 제목 구성 "domain.com/id/title"
예 :
의 난으로 블로그 게시물을 읽고 있어요 가정 해 봅시다 id = 2. id = 1 (이전) 및 3 (다음) 인 블로그 게시물에 어떻게 링크합니까?
<?php
(connect to database)
$id = str_replace ('-', ' ', $_GET['id']);
$sql = "SELECT * FROM `newstable` WHERE `id` = '$id'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
?>
<div class="content-title">
<?php echo $row['title'];?>
</div>
<div class="content-text">
<?php echo $row['text'];?>
</div>
<div id="previous post">
...........
(here comes the link to the previous post, I need to link to the correct url so that means I'll need to echo the id AND the title of that previous post)
</div>
<div id="next post">
...........
(here comes the link to the next post, I need to link to the correct url so that means I'll need to echo the id AND the title of that next post)
</div>
정확한 문제는 아이디의 올바른을 얻거나 링크를 생성 무엇입니까? – jeroen
ID의 데이터 유형은 무엇입니까 ?? –
@jeroen 올바른 이드와 제목을 얻는 것이 문제입니다. – Stan