Ver Mensaje Individual
  #15 (permalink)  
Antiguo 14/06/2016, 18:49
Avatar de kip13
kip13
 
Fecha de Ingreso: agosto-2011
Mensajes: 167
Antigüedad: 12 años, 9 meses
Puntos: 13
Respuesta: Como hacer un botón de puntuación ?

Hazlo asi:

Código HTML:
Ver original
  1. <form action="index.php" method="post">
  2.     <input type="number" min="0" name="votacion" max="10">
  3.     <input type="submit" value="votar" name="comentar"><br>
  4. </form>

Colocas un input tipo numero para calificar, de 0 a 10.

Luego lo recibes asi:

Código PHP:
Ver original
  1. <?php
  2. include("../conexion/conexionmsqli.php");
  3. if(isset($_POST['votacion'])){
  4. $voto = (int)$_POST['votacion'];
  5. mysqli_query($conexion," UPDATE votos SET voto=(voto +($voto))");
  6. }
  7. ?>

Nos cuentas si te sirvio

Saludos