Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/09/2009, 23:35
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 4 meses
Puntos: 2
Respuesta: Imprimir maximos y minimos en cajas de textos

A ver si me dan una manito, guiandome del link
http://www.forosdelweb.com/f77/relle...amente-728090/

Esto avanze:
Código php:
Ver original
  1. <body>
  2. <?php
  3. include("conec.php");
  4. conectarse();
  5. $sql= ("select ID,NOM,MIN,MAX from NOTAS");
  6. $rs=mysql_query($sql);
  7. $prov = mysql_fetch_array($rs);
  8. //echo $prov['NOM']."::~::".$prov['MIN']."::~::".$prov['MAX'];
  9. ?>
  10. <form id="frmform" name="frmform" method="post" action="">
  11. <select name='micombo' id='micombo' onChange="enviaMotivo()">
  12.     <option value='0'>Seleccione...</option>
  13. <?php
  14. while($fila=mysql_fetch_row($rs)){
  15.     echo "<option value='".$fila[0]."'>".$fila[1]."</option>";
  16. }
  17. ?>
  18. </select>
  19. Maximas:<input name="txtdato1" type="text" id="txtdato1">
  20. Minimas:<input name="txtdato2" type="text" id="txtdato2" size="10">
  21. </form>
  22. </body>
Este es mi funcion ajax:
Código php:
Ver original
  1. <script type="text/javascript">
  2. function enviaMotivo(){
  3.     var c = document.getElementById('motivo_mensaje')
  4.     var motivo = document.frmform.micombo.value;
  5.        
  6.     ajax=creaAjax();
  7.     c.innerHTML = '<img src="http://www.forosdelweb.com/f77/image/sending.gif" width="16" height="16" align="absmiddle">';
  8.     ajax.open("POST", "recibe.php",true);
  9.     ajax.onreadystatechange=function(){
  10.         if (ajax.readyState==4 && ajax.status == 200 ) {
  11.  
  12.             var respuesta=ajax.responseText;
  13.             var registro = respuesta.split('::~::');
  14.             document.frmform.txtdato1.value=registro[0];
  15.             document.frmform.txtdato2.value=registro[1];
  16.             c.innerHTML = '';
  17.         }
  18.     }
  19.     ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  20.     ajax.send("motivo="+motivo+"&control=enviado");
  21. }
  22. </script>
Y segun lo entendido tengo un php recibe:
Código php:
Ver original
  1. <?php
  2. echo $prov['NOM']."::~::".$prov['MIN']."::~::".$prov['MAX'];
  3. ?>

Espero ahora si me puedan orientar, gracias.