Ver Mensaje Individual
  #13 (permalink)  
Antiguo 01/06/2015, 02:49
Avatar de yoyo_38tuzo
yoyo_38tuzo
 
Fecha de Ingreso: febrero-2015
Mensajes: 44
Antigüedad: 9 años, 9 meses
Puntos: 0
Respuesta: Mysql comparaciones

Le di muchas vueltas y despues de unir tu codigo con el mio e podido solucionar el problema, muchas gracias por ayudar... dejo el codigo:

Código Javascript:
Ver original
  1. function suma(){
  2. s=document.form1;
  3. s.total.value=parseInt(s.imf.value)+parseInt(s.emf.value)+parseInt(s.ima.value)+parseInt(s.ema.value)+parseInt(s.num_filas.value);
  4. s.promedio.value = get_total(s.total.value);
  5. }
  6. function get_total(total){
  7.   var r = 0;
  8.   if (total <= 5)
  9.   {
  10.     r = 1 ;
  11.   }
  12.   if(total >= 6 && total <= 10)
  13.   {
  14.     r = 2;
  15.   }
  16.   if(total >= 11 && total <= 15)
  17.   {
  18.     r = 3;
  19.   }
  20.   if (total >= 16 && total <= 20)
  21.   {
  22.     r = 4;
  23.   }
  24.   if(total >= 21 && total <=25)
  25.   {
  26.     r = 5;
  27.   }
  28.   return r;
  29. }