Vinculo a una página web dinámica en php

Miren la verdad es que estoy con un problema que ya no se me ocurre como poder resolver.

Estoy haciendo una página web dinámica en php, la web se trata de juegos, entonces en el menu tengo un desplegable que dice juegos y depliega juego1, juego 2 juego tres etc...,

Y por otro lado tengo una hoja llamada juegos.php quiero que al hacer click en juego2 (en el menu) me cargue la información del juego2 en la página llamada juegos.php.

Y la verdad es que ya no se que más intentar.

* El menu esta en un include. Y cuando creo una consulta a la base de datos le paso en el vinculo del desplegable una variable que es el idContador (de mi base de datos), pero si paso el cursor o pincho en cualquier desplegable siempre me va al id1.

Como puedo resolver este problema.

Aquí les dejo el código. Ni siquiera con el dreamweaver lo pude hacer, es evidente que tengo un problema de lógica al plantear el problema.

Ah y en mi BD tengo un campo id, un campo juego, y uno puntaje.

Saludos y MUCHAS gracias

<?php require_once('Conecctions/juego.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
mysql_select_db($database_juego, $juego);
$query_JuegoDeRegistro = "SELECT * FROM planes";
$JuegoDeRegistro = mysql_query($query_JuegoDeRegistro, $juego) or die(mysql_error());
$row_JuegoDeRegistro = mysql_fetch_assoc($JuegoDeRegistro);
$totalRows_JuegoDeRegistro = mysql_num_rows($JuegoDeRegistro);
?>

1 Respuesta

Respuesta
1

Utiliza AJAX para hacer esto, en caso dado envía un parámetro por le método get para recibir y utilizar un switch.

Saludos.

Visita: http://develoteca.com 

https://www.youtube.com/watch?v=yn0yOjlKEiY&list=PLSuKjujFoGJ1Xyq6FYGkPOQ3yzrCE-gW1&index=1 

Añade tu respuesta

Haz clic para o
El autor de la pregunta ya no la sigue por lo que es posible que no reciba tu respuesta.

Más respuestas relacionadas