Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/09/2010, 10:01
LinaO
 
Fecha de Ingreso: septiembre-2010
Mensajes: 3
Antigüedad: 14 años, 3 meses
Puntos: 0
Respuesta: problema con metodo confirmcommands

Hola gracias, mira el codigo completo es asi.



<?php


require ('xajax/xajax_core/xajax.inc.php');


$xajax = new xajax();
$xajax->setCharEncoding('ISO-8859-1');
$xajax->configure('decodeUTF8Input',true);

function eliminar($dmysql){

$objResponse = new xajaxResponse();
$objResponse->setCharacterEncoding('ISO-8859-1');

$objResponse->confirmCommands(3,"estoy probando el metodo!");
mysql_select_db("mi_BD", $dmysql);
$que = "delete from tabla1 where codigo = $micod";
mysql_query($que, $micod);

$objResponse->Script("alert('linea 4');");

return $objResponse;

}

$xajax->register(XAJAX_FUNCTION, 'eliminar');
$xajax->processRequest();

?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>mi web xajax</title>

<?
$xajax->printJavascript("xajax/");
?>


y en html tengo el siguiente codigo donde llamo la funcion.

<td><img style='cursor:pointer; margin:2px 0px 0px 15px;' width='11' height='11' src='../../../imagenes/delete.png' onClick='xajax_eliminar(".$rowEmp['FAidfase'].")'/></td>