Ver Mensaje Individual
  #9 (permalink)  
Antiguo 17/05/2013, 03:46
Bugger
 
Fecha de Ingreso: septiembre-2010
Ubicación: /home/
Mensajes: 103
Antigüedad: 14 años, 2 meses
Puntos: 17
Respuesta: error If y else <fácil>

Hola

para saber si una SQL devuelve algun resultado usa la funcion mysql_num_rows

Tambien puedes usar mysql_error para saber si tu Consulta contiene algun error de sintaxis

Código PHP:
Ver original
  1. <?php
  2. if(mysql_num_rows($sql)!=0)
  3. {
  4. ?>
  5. <form action="index.php" name="form2" method="post">
  6. <input type="submit" name="nuevo" value="Crear Nuevo Cliente" style="border-radius:15px" class="button large orange" />
  7. </form>
  8. <?php
  9. }else{
  10. echo "No hay resultados para esta Consulta!";
  11. }