Tengo un code y un script los cuales muestran un texto aleatorio, el usuario por medio de un form envía una votación a otro php y se registra en la DB y muestra nuevamente otro texto aleatorio. Hasta ahí bien, el problema surge cuando nuevamente se vota, ya que el script de ajax no actúa nuevamente y redirige al php donde se envía la votación y se muestra el nuevo texto.
A diferencia de la vez anterior, esta lo hace desde el archivo.php directo, mientras la que la 1º vez lo hace desde un index con include al form que muestra el texto.
Les dejo mis codes para ver si me pueden ayudar:
Script ajax:
Código Javascript:
Ver original
<script language="javascript"> $(document).ready(function() { $().ajaxStart(function() { $('#loading').show(); $('#result').hide(); }).ajaxStop(function() { $('#loading').hide('slow'); $('#result').fadeIn('slow'); }); $('#form, #fat, #fo3').submit(function() { $.ajax({ type: 'POST', url: $(this).attr('action'), data: $(this).serialize(), success: function(data) { $('#result').html(data); } }) return false; }); }) </script>
Y php's
Moderar (muestra el texto y el form de votación)
Código PHP:
Votado.php (envió de puntos)Ver original
$result = mysql_query("SELECT * FROM historia where estado=0 and baneado=0 order by RAND() LIMIT 1"); if($row = $mostrar) { echo'<div class="entrada" accept-charset="UTF-8"> <h3>' . $row['titulo'] . '</h3> '.$row['resumen'].' ... <p style="float:right"><a href="index.php?p=leer&h=' . $row['id'] . '">Seguir leyendo</a></p> <br><br> <table style="height:5px"><tr style="height:5px"> <td style="height:5px"> <form id="fo3" name="fo3" action="votado.php" method="post"> <input type="hidden" name="id" value="'.$row["id"].'"> <input type="hidden" name="v" value="votop"> <input type="submit" value=" " style="border:none; background-image:url(posi.png); background-repeat:no-repeat;"> </form> </td><td style="height:5px"> <form id="fo3" name="fo3" action="votado.php" method="post" > <input type="hidden" name="id" value="'.$row["id"].'"> <input type="hidden" name="v" value="votom"> <input type="submit" value=" " style="border:none; background-image:url(nega.png); background-repeat:no-repeat;"> </tr> </table> </form> </div> </div> '; }
Código PHP:
Ver original
<? include("config.php"); $id=$_POST['id']; if($_POST['v']=='votop') { { include('moderar.php'); } } elseif($_POST['v']=='votom') { { include('moderar.php'); } } ?>
Espero que me puedan ayudar.
Un saludo y gracias!