Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/11/2007, 06:47
josedawik
 
Fecha de Ingreso: septiembre-2003
Mensajes: 8
Antigüedad: 21 años, 3 meses
Puntos: 0
Re: Formulario en Ajax y llamada a funcion

Tambien tengo otra funcion, que es:
function Poner_Cuadroventas($id_promocion) {

$newContent = "";
$newContent .= rand(1,1000);
//$newContent .= $id_promocion;
$newContent .= "<table width='85%' align='center' style='border: 1px solid #ccc;'>";

$newContent .= "<tr>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Planta</td>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Vivienda</td>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Tipo Construcción</td>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Estado</td>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Dormitorios</td>";
$newContent .= "<td style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Superficie Útil</td>";
$newContent .= "<td width='80' style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Modificar</td>";
$newContent .= "<td width='80' style='color: #FFF;font-weight: bold;text-align: center;background-color: #0664B0;'>Eliminar</td>";
$newContent .= "</tr>";

$plantas = ";Planta Baja;1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;Atico";
$plantas = explode(";",$plantas);
$num_plantas = count($plantas);

for ($i=0;$i<$num_plantas;$i++) {

$ord_planta = $plantas[$i];

$sql = mysql_query("SELECT * FROM ventas WHERE id_promocion='$id_promocion' AND planta='$ord_planta' ORDER BY denominacion ASC");
while ($fila = mysql_fetch_array($sql)) {

$newContent .= "<tr>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['planta']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['denominacion']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['tipo_vivienda']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['estado']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['n_dormitorios']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'>".$fila['s_util']."</td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'><a href=''><img src='images/modificar.gif' alt='' style='border: 0;' /></a></td>";
$newContent .= "<td style='color: #0664B0;font-weight: bold;text-align: center;background-color: #e1e1e1;'><a href=''><img src='images/eliminar.gif' alt='' style='border: 0;' /></a></td>";
$newContent .= "</tr>";

}

}
$newContent .= "</table>";





// Inicializar el objeto xajaxResponse
$objResponse = new xajaxResponse();
$objResponse->addAssign("cuadro_ventas","innerHTML", utf8_encode($newContent));

//return the XML response generated by the xajaxResponse object
return $objResponse;
}

y quiero llamarla dentro de Procesar_Add_Vivienda(); pero no me va, ¿Como lo haria? Graicas.