Ver Mensaje Individual
  #10 (permalink)  
Antiguo 08/11/2009, 18:14
bebo
 
Fecha de Ingreso: octubre-2009
Mensajes: 97
Antigüedad: 15 años, 1 mes
Puntos: 4
Respuesta: Alguna Idea de como hacer esto?

En votes.php pon esto:

Código:
<!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=utf-8" /> 
<title>Documento sin título</title> 
<script type="text/javascript"> 
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 votar(voto){ 
    ajax=objetoAjax(); 
    ajax.open("GET","vote.php?voto="+voto); 
    ajax.send(); 
    alert("Se ha agregado su voto. Gracias.");
} 
</script> 
</head> 

<body> 
<img src="si.gif" border="0" onclick="javascript:votar('si')"> 
</body> 
</html>