Estoy en un proyecto en el cual saco informacion de una base de datos con varias tablas relacionadas.
Lo que quiero hacer ahora es que en la pagina principal, me muestre 10 "articulos" (que en realidad no son articulos sino recetas) al estilo wordpress.
He mirado las faq del foro de paginacion pero no es exactamente lo que busco...
He creado esta pagina "postreceta.php":
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-5889-1" />
<title>receta</title>
<?php include "conexion.php";?>
</head>
<body>
<?php
$peticion= mysql_query ("SELECT *
FROM (`recetas` INNER JOIN `receta_ingredientes` ON `recetas`.idReceta=`receta_ingredientes`.idReceta)
INNER JOIN `ingredientes` ON `ingredientes`.idIngrediente=`receta_ingredientes`.idIngrediente
INNER JOIN unidades ON receta_ingredientes.idUnidad=unidades.idUnidad WHERE `receta_ingredientes`.idReceta=8");
$titulo="";
$preparacion="";
$contador=0;
while ($fila=mysql_fetch_array($peticion))
{
$titulo= $fila ['tituloReceta'];
$preparacion= $fila ['preparacion'];
}
echo "<h1>".$titulo."</h1><br>";
$peticion= mysql_query ("SELECT *
FROM (`recetas` INNER JOIN `receta_ingredientes` ON `recetas`.idReceta=`receta_ingredientes`.idReceta)
INNER JOIN `ingredientes` ON `ingredientes`.idIngrediente=`receta_ingredientes`.idIngrediente
INNER JOIN unidades ON receta_ingredientes.idUnidad=unidades.idUnidad WHERE `receta_ingredientes`.idReceta=2");
echo "<blockquote><h1>Ingredientes:</h1><ul>";
while ($fila=mysql_fetch_array($peticion)){
echo "<li>".$fila['nombreIngrediente'].' ......................... '.$fila['cantidad'].' '.$fila['nombreUnidad']."</li>";
}
echo "</ul></blockquote>";
echo "<h2>Preparacion</h2><p>".$preparacion."</p>";
?></body>
</html>
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-5889-1" />
<title>Documento sin título</title>
<LINK REL=StyleSheet HREF="estilo.css" TYPE="text/css" MEDIA=screen>
</head>
<body>
<div id="container">
<div id="header"><img src="imgs/logochef2.png" width="283" height="75" />
<div id="top-menu">
<ul>
<li>Home</li>
<li>Recetas</li>
<li>Buscar</li>
</ul>
</div>
</div>
<div id="content-area">
<div id="category-name">
<h3>Las recetas de la chef</h3>
<div id="category-inner"><p>Ultimas Recetas</p>
</div>
</div>
<div id="sidebar">
sidebar
</div>
<div id="left-area">
<p class="post"><?php include "postreceta.php" ?></p>
</div>
</div>
<div id="footer">
<div id="footer-content">
Todos los derechos reservados
</div>
</div>
</div>
</body>
</html>
Lo que necesito es que me salgan varios resultados del uno al diez (o del uno al 20)
Lo he hecho de esta forma fijandome en el index.php de wordpress :
Código PHP:
1. <?php get_header(); ?>
2. <div id=”content”>
3. <?php if (have_posts()) : ?>
4. <?php while (have_posts()) : the_post(); ?>
5. <div class=”post” id=”post-<?php the_ID(); ?>”>
6. <h2><a href=”<?php the_permalink() ?>” rel=”bookmark” title=
”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a></h2>
7. <small><?php the_time(‘F jS, Y’) ?>
<!— by <?php the_author() ?> —></small>
8. <div class=”entry”>
9. <?php the_content(‘Read the rest of this entry »’); ?>
10. </div>
11. <p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?>
12. <strong>|</strong> <?php edit_post_link
(‘Edit’,’’,’<strong>|</strong>’); ?> <?php comments_popup_link
(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p>
13. </div>
14. <?php endwhile; ?>
15. <?php else : ?>
Alquien podria ayudarme?
Muchas gracias!