Update: mysqli connector
This commit is contained in:
parent
9ca109740a
commit
d6ca67c9e0
@ -20,11 +20,13 @@ require("../inc/head.php");
|
||||
<?php
|
||||
|
||||
$sql = "select * from plantas limit 0,34";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
$consulta = $mysqli->query($sql);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
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>
|
||||
<?php endwhile; endif; ?>
|
||||
|
||||
|
@ -8,15 +8,18 @@ if (!$id){
|
||||
}
|
||||
|
||||
$sql = "select * from plantas where id=$id";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
$consulta = $mysqli->query($sql);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
if ( $num_resultados==0){
|
||||
header("Location: index.php");
|
||||
exit();
|
||||
}
|
||||
|
||||
$fila = mysql_fetch_array($consulta);
|
||||
$fila = $consulta->fetch_array();
|
||||
#$fila = mysql_fetch_array($consulta);
|
||||
|
||||
$nombre = $fila["nombre_$idioma"];
|
||||
$nombre_latin = $fila["nombre_latin"];
|
||||
@ -93,11 +96,13 @@ require("../inc/head.php");
|
||||
from habitats_plantas hp, habitats
|
||||
where hp.id_habitat = habitats.id and
|
||||
id_planta = $id";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
$consulta = $mysqli->query($sql);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
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 />
|
||||
<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");
|
||||
|
||||
$sql = "select * from habitats where id=$id_habitat";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
$consulta = $mysqli->query($sql);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
if ( $num_resultados>0){
|
||||
$fila = mysql_fetch_array($consulta);
|
||||
$fila = $consulta->fetch_array();
|
||||
$titulo = $fila["nombre_$idioma"];
|
||||
}
|
||||
|
||||
@ -32,14 +34,15 @@ require("../inc/head.php");
|
||||
|
||||
<ul class="photos">
|
||||
<?php
|
||||
$sql = "select *
|
||||
from plantas p, habitats_plantas hp
|
||||
where p.id = hp.id_planta and hp.id_habitat = $id_habitat";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
$sql = "select * from plantas p, habitats_plantas hp where p.id = hp.id_planta and hp.id_habitat = $id_habitat";
|
||||
$consulta = $mysqli->query($sql);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
|
||||
if ( $num_resultados>0){
|
||||
while($fila = mysql_fetch_array($consulta))
|
||||
while($fila = $consulta->fetch_array())
|
||||
{
|
||||
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>
|
||||
|
@ -19,11 +19,15 @@ require("../inc/head.php");
|
||||
|
||||
<?php
|
||||
$sql = "select * from habitats order by nombre_$idioma";
|
||||
$consulta = mysql_query($sql, $link);
|
||||
$num_resultados = mysql_num_rows($consulta);
|
||||
#$consulta = mysql_query($sql, $link);
|
||||
$consulta = $mysqli->query($sql);
|
||||
#$num_resultados = mysql_num_rows($consulta);
|
||||
$num_resultados = $consulta->num_rows;
|
||||
|
||||
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>
|
||||
<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