Ver Mensaje Individual
  #7 (permalink)  
Antiguo 17/04/2009, 14:44
rodolfospyronet
 
Fecha de Ingreso: agosto-2006
Mensajes: 22
Antigüedad: 17 años, 9 meses
Puntos: 0
Respuesta: Cambiar valor de variable GET

Todo mi codigo es:
Código PHP:
echo "<table width='230' border='0' cellspacing='0' cellpadding='0'>";
while(
$row mysql_fetch_row($_pagi_result)){
echo 
"<tr>";
echo 
"<td width='200' class='texto04'>".$row[1]."</td>";
if (isset(
$_GET['gm'])) {
unset 
$_GET['gm'];
echo 
"<td width='30' class='texto04'><a href='main.php?id=juegos&gm=".$row[2]."'>jugar</a></td>";
}else{
echo 
"<td width='30' class='texto04'><a href='main.php?id=juegos&gm=".$row[2]."'>jugar</a></td>";
}
echo 
"</tr>";
}
echo 
"</table>"
Cuando le agrego la parte del if no carga la pagina, como si hubiera un error, pero no encuentro ese error.

Gracias por su ayuda