$snfoto= Numero de fotos del catalogo.
Lo que necesito es:
si $snfoto=0, confirmar si crea el catalogo (negrilla).
Espero darme a entender, desde ya gracias por su colaboracion.
Código PHP:
<?
include("config.php");
$sql="select * from exipro $filfoto order by nombre_p desc";
$res=mysql_query($sql,$conexion) or die("Problemas con cadena de conexion..<b>".mysql_error()."</b>");
?>
<table width=100% cellpadding=2 cellspacing=0 border=1 id=linea>
<tr>
<td align=center width=12%>Código</td>
<td align=center width=50%>Descripción</td>
<td align=center width=12%>Fotos</td>
<td align=center colspan=3 width=26%>Aplicaciones</td>
</tr>
<?
while($fila = mysql_fetch_array($res))
{
$codigo=$fila['codpro_p'];
$nombre=$fila['nombre_p'];
$snfoto=$fila['swfoto_p'];
//En el link EDITAR, preguntar si esta seguro de crear el catalogo, solo si $snfoto = 0.
?>
<tr>
<td align=right width=12%><? echo $codigo; ?> </td>
<td align=left width=50%> <? echo $nombre; ?></td>
<td align=right width=12%><? echo $snfoto; ?> </td>
[B]<td align=center width=10%><a href='fotos.php?codigo=<? echo $codigo; ?>' onclick="return confirm('No existen fotos. ¿Esta seguro de crear el Catalogo?')">Editar</a></td>[/B]
<td align=center width=8%><a href='aplica/aplica.php?codigo=<? echo $codigo; ?>' onclick="javascript: alert('Aplicacion no disponible');">Aplicacion</a></td>
<td align=center width=8%><a href='ficha/ficha.php?codigo=<? echo $codigo; ?>' onclick="javascript: alert('Aplicacion Ficha no disponible');">Ficha</a></td>
</tr>
<?
}
?>