Hola Reedyseth, en principio agradecerte el intentar ayudarme, aqui esta el codigo aunque es lo que postee arriba es un codigo algo sencillo.
Código HTML:
Ver original<!--index.html-->
<!DOCTYPE html>
<meta name="viewport" content="width=device-width"/> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<div data-role='content'> <a href="detalles.php" data-role='button' >ver detalles
</a>
Código PHP:
Ver original<!-- detalles.php-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="jquery.mobile.pagination.css"/>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="jquery.mobile.pagination.js"></script>
</head>
<body>
<?php
//$page es un array que recupero de una base de datos con la informacion que debo mostrar
for($i=0;$i<count($page);$i++){ ?>
<div data-role='page' id='page<?php echo $i+1;?>'>
<div data-role='header'>
<h1>page<?php echo $i+1;?></h1>
</div>
<div data-role='content'>
<?php
echo $page[$i];
?>
<ul data-role='pagination'>
<li class='ui-pagination-next'><a href='#page<?php echo $i+2;?>'>Siguiente</a></li>
</ul>
</div>
</div>
<?php
}
?>
</body>
</html>
Espero que me puedan ayudar, saludos.