Estoy haciendo un catálogo en php donde los productos están insertados en la base de datos MYSQL. La idea es que al hacer click en la imagen del producto te lleve a la pag con el detalle de dicho producto. Esto ya lo pude realizar con los registros desde el DW pero el problema q tengo es que no importa el producto al q haga clik siempre me trae la misma info q corresponde primero q está en la tabla de la Base de datos.
Si alguien me puede ayudar
Muchas gracias!!
codigo
Código PHP:
Ver original
<?php require_once('Connections/BDCatalogo.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { } $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": break; case "double": break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } $colname_Recordset1 = "-1"; $colname_Recordset1 = $_GET['id_producto']; } $query_Recordset1 = sprintf("SELECT * FROM detalle_producto WHERE id_producto = %s", GetSQLValueString($colname_Recordset1, "int")); ?>