08/11/2011, 13:41
|
(Desactivado) | | Fecha de Ingreso: septiembre-2011
Mensajes: 283
Antigüedad: 13 años, 2 meses Puntos: 10 | |
Respuesta: como hacer un if tengo el codigo asi y no me sale el boton y si lo pongo con echo me da error como lo hago para que salga:
<?php
$consulta="select Estado from amigos where id_amigo='$reg[id]' and id_logueado='$id_usuario'";
$ejecuta=mysql_query($consulta) or die("Problemas en el select:".mysql_error());
$cantidad=mysql_num_rows($ejecuta);
while($cons=mysql_fetch_array($ejecuta))
{
if($cantidad==0)
{ ?>
<div class="amigos">
<form action="agregara.php" method="post">
<input type="hidden" name="id" value="'.$reg['id'].'">
<input type="submit" value="Agregar Amigos">
</form>
</div>
<?php
}
else
{
echo "Ya enviaste la solicitud";
}
}
?> |