Necesito actualizar un registro y a continuación mostrar el nuevo contenido de la tabla... se puede ?
Yo llego hasta la actualización, necesito ayuda para la función que mostraría el nuevo contenido.
Tengo esto:
Código PHP:
<script type="text/javascript">
function nuevoAjax(){
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 borraReg(cual){
ajax=nuevoAjax();
ajax.open("GET", "remove.php?cn="+cual,true);
ajax.send(null)
}
</script>
<tr>
<td colspan="2" width="494"><br><span style="background-color: #EFEFEF"><b><font size="2" font color="#OOOOOO"><b>Case Number: </b>
<?
echo $casenumber."  <input type=hidden name='casenumber' value='$casenumber'><input type='image' src='image/del.gif' width='22' height='15' align='absbottom' name='a' onclick='borraReg\"".$casenumber."\")'></td></tr>";
Graciasssssss