Cuando creía que todo estaba bien en mi localhost y era hora de pasarlo al servidor, este da un fallo.
Más que un fallo es que no recibe el dato, estos son mis códigos:
Form: Todas las variables del form son mostradas correctamente
Código PHP:
<?
<form method="get" action="votado.php">
<center>
Votar este juego!
<br>
<input type="hidden" name="id" value="'.$row["id"].'">
<input type="submit" value="Votar a '.$row["nombre"].'">
</form>
?>
Código PHP:
<?
include("config.php");
$sSQL="Update rank Set votos=votos+1 Where id=$id" or die("Fallo al votar");
mysql_query($sSQL);
include("head.php");
echo'<center><h1>Voto añadido</h1></center>';
$id=$_POST['id'];
?>
Espero que me puedan ayudar gracias y un Saludo