Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/02/2013, 20:49
ruben_chirinos_1985
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Contar registros y sumar valores por registros

Hola como estas mira ya logre lo q queria, aqui te meustro la manera q lo hice para ver si esta bien todo o habrian algunas consultas de mas

Código PHP:
Ver original
  1. <?php
  2. include_once('conexion.php');
  3. conectarse();
  4.  
  5. $sql3 = mysql_query("select * from periodo_beca order by id_periodo desc") or die(mysql_error());
  6. $array3 = mysql_fetch_array($sql3);
  7. $periodo = $array3['periodo'];
  8.  
  9. $sql = mysql_query("Select * from asig_pago, tipo_becas where asig_pago.ced_est = '23493045' and asig_pago.cod_beca = tipo_becas.cod_beca") or die(mysql_error());
  10. $array = mysql_fetch_array($sql);
  11. $monto = $array['monto_beca'];
  12.  
  13. $registros=mysql_query("select count(mes_pago) as cantidad from asig_pago where ced_est = 23493045 and periodo = '".$periodo."' and status_pago = 'POR COBRAR'") or  die("Problemas en el select:".mysql_error());
  14. $reg=mysql_fetch_array($registros);
  15.  
  16. $total= $monto * $reg['cantidad'];
  17.  
  18. echo "".$total;
  19.    
  20.     ?>