Ver Mensaje Individual
  #19 (permalink)  
Antiguo 21/08/2008, 08:08
art33
 
Fecha de Ingreso: agosto-2008
Mensajes: 272
Antigüedad: 16 años, 5 meses
Puntos: 4
Respuesta: mostrar datos en la tabla, segun la id?

aqui esta calcula precio
Código PHP:
function calculaPrecio(a,b){
    var 
importe document.getElementById('importe');
    
importe.innerHTML b;
    
anadir();

y recupera descripcion
Código PHP:
function objetoAjax(){
    var 
xmlhttp=false;
    try {
        
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (
e) {
        try {
           
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (
E) {
            
xmlhttp false;
          }
    }
    if (!
xmlhttp && typeof XMLHttpRequest!='undefined') {
        
xmlhttp = new XMLHttpRequest();
    }
    return 
xmlhttp;
}
function 
RecuperaDescripcion(IdTabla,Valor,IdCampo,Description,IdValorRegresado){
    
//donde se mostrará el resultado
    //el objetoAjax
    
divResultado document.getElementById(IdValorRegresado);
    
ajax=objetoAjax();

    
ajax.open("POST""datospedido.php?Tabla="+IdTabla+"&Valor="+Valor+"&Campo="+IdCampo+"&Description="+Description,true);    
    
ajax.onreadystatechange=function() {
        if (
ajax.readyState==4) {
            
//mostrar resultados en esta capa
            
divResultado.innerHTML ajax.responseText
        
}
    }
    
ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
    
//enviando los valores
    
ajax.send(IdValorRegresado+"="+Valor);

esta raro que no funsione... hasta tube pesadillas....