Update: mysqli connector
This commit is contained in:
parent
9ca109740a
commit
d6ca67c9e0
@ -20,11 +20,13 @@ require("../inc/head.php");
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$sql = "select * from plantas limit 0,34";
|
$sql = "select * from plantas limit 0,34";
|
||||||
$consulta = mysql_query($sql, $link);
|
#$consulta = mysql_query($sql, $link);
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
$consulta = $mysqli->query($sql);
|
||||||
|
$num_resultados = $consulta->num_rows;
|
||||||
|
|
||||||
if ( $num_resultados>0) :
|
if ( $num_resultados>0) :
|
||||||
while ($fila = mysql_fetch_array($consulta)) : ?>
|
while ($fila = $consulta->fetch_array()) : ?>
|
||||||
<li><a href="detalle-planta.php?id=<?=$fila["id"]?>&v=1" title="<?=$fila["nombre_$idioma"]?>"><img src="../images/loreak/txiki/<?=$fila["nombre_imagen"]?>" alt="<?=$fila["nombre_$idioma"]?>" width="95" height="95"></a></li>
|
<li><a href="detalle-planta.php?id=<?=$fila["id"]?>&v=1" title="<?=$fila["nombre_$idioma"]?>"><img src="../images/loreak/txiki/<?=$fila["nombre_imagen"]?>" alt="<?=$fila["nombre_$idioma"]?>" width="95" height="95"></a></li>
|
||||||
<?php endwhile; endif; ?>
|
<?php endwhile; endif; ?>
|
||||||
|
|
||||||
|
@ -8,15 +8,18 @@ if (!$id){
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sql = "select * from plantas where id=$id";
|
$sql = "select * from plantas where id=$id";
|
||||||
$consulta = mysql_query($sql, $link);
|
#$consulta = mysql_query($sql, $link);
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
$consulta = $mysqli->query($sql);
|
||||||
|
$num_resultados = $consulta->num_rows;
|
||||||
|
|
||||||
if ( $num_resultados==0){
|
if ( $num_resultados==0){
|
||||||
header("Location: index.php");
|
header("Location: index.php");
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
$fila = mysql_fetch_array($consulta);
|
$fila = $consulta->fetch_array();
|
||||||
|
#$fila = mysql_fetch_array($consulta);
|
||||||
|
|
||||||
$nombre = $fila["nombre_$idioma"];
|
$nombre = $fila["nombre_$idioma"];
|
||||||
$nombre_latin = $fila["nombre_latin"];
|
$nombre_latin = $fila["nombre_latin"];
|
||||||
@ -93,11 +96,13 @@ require("../inc/head.php");
|
|||||||
from habitats_plantas hp, habitats
|
from habitats_plantas hp, habitats
|
||||||
where hp.id_habitat = habitats.id and
|
where hp.id_habitat = habitats.id and
|
||||||
id_planta = $id";
|
id_planta = $id";
|
||||||
$consulta = mysql_query($sql, $link);
|
#$consulta = mysql_query($sql, $link);
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
$consulta = $mysqli->query($sql);
|
||||||
|
$num_resultados = $consulta->num_rows;
|
||||||
|
|
||||||
if ( $num_resultados>0){
|
if ( $num_resultados>0){
|
||||||
while($fila = mysql_fetch_array($consulta))
|
while($fila = $consulta->fetch_array())
|
||||||
{ ?>
|
{ ?>
|
||||||
<p><strong><u><?=$fila["nombre_$idioma"]?>:</u></strong> <?=$fila["descripcion_$idioma"]?><br />
|
<p><strong><u><?=$fila["nombre_$idioma"]?>:</u></strong> <?=$fila["descripcion_$idioma"]?><br />
|
||||||
<a href="<?=$fila["enlace_$idioma"]?>" title="<?=$fila["nombre_$idioma"]?>" target="_blank"><?php echo _INFO?></a></p>
|
<a href="<?=$fila["enlace_$idioma"]?>" title="<?=$fila["nombre_$idioma"]?>" target="_blank"><?php echo _INFO?></a></p>
|
||||||
|
@ -6,11 +6,13 @@ if (!$id_habitat)
|
|||||||
header("Location: index.php");
|
header("Location: index.php");
|
||||||
|
|
||||||
$sql = "select * from habitats where id=$id_habitat";
|
$sql = "select * from habitats where id=$id_habitat";
|
||||||
$consulta = mysql_query($sql, $link);
|
#$consulta = mysql_query($sql, $link);
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
$consulta = $mysqli->query($sql);
|
||||||
|
$num_resultados = $consulta->num_rows;
|
||||||
|
|
||||||
if ( $num_resultados>0){
|
if ( $num_resultados>0){
|
||||||
$fila = mysql_fetch_array($consulta);
|
$fila = $consulta->fetch_array();
|
||||||
$titulo = $fila["nombre_$idioma"];
|
$titulo = $fila["nombre_$idioma"];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,14 +34,15 @@ require("../inc/head.php");
|
|||||||
|
|
||||||
<ul class="photos">
|
<ul class="photos">
|
||||||
<?php
|
<?php
|
||||||
$sql = "select *
|
$sql = "select * from plantas p, habitats_plantas hp where p.id = hp.id_planta and hp.id_habitat = $id_habitat";
|
||||||
from plantas p, habitats_plantas hp
|
$consulta = $mysqli->query($sql);
|
||||||
where p.id = hp.id_planta and hp.id_habitat = $id_habitat";
|
$num_resultados = $consulta->num_rows;
|
||||||
$consulta = mysql_query($sql, $link);
|
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
#$consulta = mysql_query($sql, $link);
|
||||||
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
|
||||||
if ( $num_resultados>0){
|
if ( $num_resultados>0){
|
||||||
while($fila = mysql_fetch_array($consulta))
|
while($fila = $consulta->fetch_array())
|
||||||
{
|
{
|
||||||
if ($fila["descripcion_$idioma"]){?>
|
if ($fila["descripcion_$idioma"]){?>
|
||||||
<li><a href="detalle-planta.php?id=<?=$fila["id"]?>&h=<?=$id_habitat?>&v=2" title="<?=$fila["nombre_$idioma"]?>"><img src="../images/loreak/txiki/<?=$fila["nombre_imagen"]?>" alt="" width="95" height="95"></a><span><em><?=$fila["nombre_latin"]?></em>, <?=$fila["nombre_$idioma"]?></span></li>
|
<li><a href="detalle-planta.php?id=<?=$fila["id"]?>&h=<?=$id_habitat?>&v=2" title="<?=$fila["nombre_$idioma"]?>"><img src="../images/loreak/txiki/<?=$fila["nombre_imagen"]?>" alt="" width="95" height="95"></a><span><em><?=$fila["nombre_latin"]?></em>, <?=$fila["nombre_$idioma"]?></span></li>
|
||||||
|
@ -19,11 +19,15 @@ require("../inc/head.php");
|
|||||||
|
|
||||||
<?php
|
<?php
|
||||||
$sql = "select * from habitats order by nombre_$idioma";
|
$sql = "select * from habitats order by nombre_$idioma";
|
||||||
$consulta = mysql_query($sql, $link);
|
#$consulta = mysql_query($sql, $link);
|
||||||
$num_resultados = mysql_num_rows($consulta);
|
$consulta = $mysqli->query($sql);
|
||||||
|
#$num_resultados = mysql_num_rows($consulta);
|
||||||
|
$num_resultados = $consulta->num_rows;
|
||||||
|
|
||||||
if ( $num_resultados>0) :
|
if ( $num_resultados>0) :
|
||||||
while($fila = mysql_fetch_array($consulta)) : ?>
|
while($fila = $consulta->fetch_array()) :
|
||||||
|
#while($fila = mysql_fetch_array($consulta)) :
|
||||||
|
?>
|
||||||
<h3><strong><?=$fila["nombre_$idioma"]?></strong></h3>
|
<h3><strong><?=$fila["nombre_$idioma"]?></strong></h3>
|
||||||
<p><?=$fila["descripcion_$idioma"]?><br /><a href="habitat-listado.php?h=<?=$fila["id"]?>" title="<?php echo _MAS?>"><?php echo _MAS?></a></p>
|
<p><?=$fila["descripcion_$idioma"]?><br /><a href="habitat-listado.php?h=<?=$fila["id"]?>" title="<?php echo _MAS?>"><?php echo _MAS?></a></p>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user