si tienes razón, perdona xD
Este es el div:
Cita: <div id="votos"><a href="#" onclick="new Ajax.Updater('votos','votos.php');"><?php echo $row["votos"]; ?></a></div>
Y el archivo php que hace el proceso este:
Cita: <?php
include('funciones/conexionbd.php');
$noticia = $_GET['variable'];
$sql1 = "select votos from noticias where id = '$noticia'";
$resultados = mysql_query($sql1);
if($row = mysql_fetch_array($resultados)) {
$votosnue = $row["votos"] + 1;
$sql = "update noticias set votos = '$votosnue' where id = '$noticia'";
$resultados = mysql_query($sql);
}
echo $votosnue;
?>
Muchas gracias un saludo