-2

大きなテキストを含むデータベース フィールドがあります。中にタグがある場合は、<!-- new page -->そのタグでページネーションしたい。

私がやろうとしているのは<!-- new page -->、新しいページを作成したいなどのタグを挿入するときに、WordPress が持っているようなものです。

データベースからこのテキストがあるとします

Lorem ipsum dolor sit amet, consectetur adipiscing elit. nulla ultrices の Quisque elementum magna、eu pulvinar nulla auctor. Praesent auctor ut dui vitae feugiat.

<!-- new page -->

Sed risus nisl, tristique sed tristique et, auctor eu augue. ハク・ハビタス・プラテア・ディクタムストで。ipsum ligula をフケします。Aliquamvestibulum ligula ut ligula porta gravida. Curabitur tincidunt a est vitae eleifend. Duis ullamcorper nunc sapien, quis molestie tellus ornare vel. Nullam in mi eros.

2 番目の段落を新しいページに表示するにはどうすればよいですか?

このようなものhttp://en.support.wordpress.com/splitting-content/nextpage/

4

1 に答える 1

2

私のコードが役立つことを願っています:

<?php
//in this example :
//first you have to create a database with name : blog
// create table : article (id as primary key, name , content)
// here we supposed that in the content you have your tags <!-- new page -->
// also i supposed the name of this file as : pagination.php

//Getting the id of article:
//=========================
if(isset($_GET['id']))
    $id_article = $_GET['id'];
else
    $id_article = 1;



//Connexion to database :
//======================
$user="root";
$pass="root";
$db="blog";
$host="localhost";

$pdo_options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION;
$bdd = new PDO('mysql:host='.$host.';dbname='.$db, $user, $pass, $pdo_options);
$bdd->query("SET NAMES 'utf8'");


$response = $bdd->query('SELECT * FROM articles WHERE id='.$id_article);

$tab_content = array();

$data = $response->fetch()
echo'<div >';
    $tab_content = explode('<!-- new page -->',$data['content']);
    $count_pages = count($tab_content);
    if($count_pages){
            //in the case that you have somme tags :
            //=====================================
        echo $tab_content[$page];
        echo '<br>';
        for($i=1;$i<$count_pages;$i++)
            echo '<a href="./pagination.php?id='.$id_article.'&page='.$i.'">'.$i.'</a>&nbsp;&nbsp;';
    }
    else{
            //if no tags '<!-- new page -->' in your content:
            //===============================================
        echo $data['content'];
    }
echo '</div>';

$response->closeCursor();

?>
于 2013-11-08T09:38:21.580 に答える