ahora tengo un IF que si existe un dato osea si el PIN se a movido que al pasar el cursor se dibuje un rectangulo con un fondo en blanco que llame LEER. y mostrara los datos de la busqueda, pero no lo hace.. que podria estar mal :S Muestro el codigo:
Código PHP:
<?php
include_once('../Connections/BD_Cementerio.php');
$conectados=AbrirCone();
$TipoBov=$_GET['TipoBov'];
$DifID=$_GET['DifID'];
$Consul="SELECT difuntos_totales.Nombre_apellido as Nombre,difuntos_totales.Edad as Edad,difuntos_totales.FEnterramiento as Inhumacion,difuntos_totales.Parroquia as Parroquia,bovedas_total_$TipoBov.x as x,bovedas_total_$TipoBov.y as y FROM difuntos_totales,bovedas_total_$TipoBov where difuntos_totales.Cod_Boveda=bovedas_total_$TipoBov.codigo and difuntos_totales.Tipo_Boveda=bovedas_total_$TipoBov.Tipo and difuntos_totales.Bloque=bovedas_total_$TipoBov.bloque and difuntos_totales.difunto_ID=$DifID";
$Datos=Consuta($Consul,$conectados);
while ($row=mysql_fetch_assoc($Datos))
{
$nombre=$row["Nombre"];
$edad=$row["Edad"];
$inhumacion=$row["Inhumacion"];
$parroquia=$row["Parroquia"];
$x=$row["x"];
$y=$row["y"];
}
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="../imagenes/Mapa Fisico.png" width="518" height="30" border="0"><BR><BR></td>
</tr>
<tr>
<td>
<div style="width: 1000px; height: 684px;
background-image: url('../imagenes/mapa.png'); z-index: 1;">
<?php
if(mysql_num_rows($Datos)>0)
{
?>
<div style="
width: 1000px; height: 684px;
background-image: url('../imagenes/pin.gif');
background-repeat: no-repeat;
background-position: <? echo $x; ?>px <? echo $y; ?>px;">
<map name="Cementerio">
<?
if($x>0)
{
?>
<area shape="rect" coords="<? echo $x; ?>,<? echo $y; ?>,<? echo $x + 20; ?>,<? echo $y + 20; ?>" title="<? echo "Nombre: $nombre"." ".$edad." Fecha de Inhumación:".$inhumacion." Parroquia:".$parroquia.""; ?>">
<?
}
?>
</map>
<img src="../imagenes/leer.gif" border="0" width="1013" height="684" usemap="Cementerio">
</div><?php
}
?>
</div>
</td>
</tr>
</table>