-1
I have a large text with many characters and I need to make it stay in 5 pages with option NEXT PAGE and PREVIOUS PAGE.
I searched and I can not find any tutorial on the subject, someone can help me?
I need a different way of javascript that I found here. The code below is reduced for testing.
<?
include("config/config.php");
////////////////NOVO MYSQLI////////////////
$seleciona = "SELECT * FROM news_ind where id = '$idnoticias2'";
$result = $conecta->query($seleciona);
$ver = $result->fetch_array(MYSQLI_ASSOC);
////////////////NOVO MYSQLI////////////////
$noticia = $ver["noticia"];
?>
<? echo $noticia; ?>
I recommend reading this post: https://answall.com/questions/26303/como-fazer-pagina%C3%A7%C3%A3o-php-e-mysql
– Neto Costa
Can you verify the answer? Don’t forget to accept it if you are satisfied with it.
– tvdias