Hola, quería haber si podéis darme un script para que mis usuarios voten a juegos como aparece en meristation o trucoteca ( http://www.trucoteca.com/trucos/ben-10-alien-force/PSP-10774.html ) lo que pone abajo de esa direccion.
index.php
<!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=iso-8859-1" />
<title>Vota el Juego</title>
</head>
<body>
<fieldset style="width:250px; height:50px;">
<legend>Vota este juego »</legend>
<form action="pagina2.php" method="post">
Valora este juego: <select name="valoracion">
<option value="10">Exelente</option>
<option value="9">Muy Bueno</option>
<option value="8">Bueno</option>
<option value="7">Malo</option>
<option value="6">Muy Malo</option>
<option value="5">Pesimo</option>
</select>
<input type="submit" value="Votar!" />
</form>
</fieldset>
</body>
</html>pagina2.php<!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=iso-8859-1" />
<title>Vota el Juego</title>
</head>
<body>
<fieldset style="width:250px; height:50px;">
<legend>Vota este juego »</legend>
<?php
$valoracion=$_POST['valoracion'];
if ($valoracion=="10")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Exelente</option></select>";
}
elseif ($valoracion=="9")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Muy Bueno</option></select>";
}
elseif ($valoracion=="8")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Bueno</option></select>";
}
elseif ($valoracion=="7")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Malo</option></select>";
}
elseif ($valoracion=="6")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Muy Malo</option></select>";
}
elseif ($valoracion=="5")
{
echo "[b]Tu voto ha sido: [/b]<select name=\"valoracion\" disabled><option>Pesimo</option></select>";
}
else
{
echo "Ingrese la votacion";
}
?>
</fieldset>
</body>
</html>Espero que te sirva, lo hice desde 0. Saludos amigo :wink: