Tengo el diseño de una tienda online y ya todo anda bien ya tengo lista la BD y la plataforma de la tienda el unico detalle que me falla es que por ejemplo si quiero agregar una producto a mi tienda que no tenga talla al comprarlo me salta el error de la imagen que les dejo adjunta
[URL=http://www.subeimagenes.com/img/error-final-432053.html][IMG]http://www.subeimagenes.com/thumb/error-final-432053.png[/IMG][/URL] Subido en [URL=http://www.subeimagenes.com]SubeImagenes.com[/URL]
y aqui les dejo mi codigo sobre la pagina donde se muestra el producto se da click a comprar. SI necesitan algun otro archivo para ver mas sobre como arreglar el problema me dicen gracias
Código PHP:
<?php require_once('Connections/conexionzapatos.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;
}
}
$varProducto_DatosProducto = "0";
if (isset($_GET["recordID"])) {
$varProducto_DatosProducto = $_GET["recordID"];
}
mysql_select_db($database_conexionzapatos, $conexionzapatos);
$query_DatosProducto = sprintf("SELECT * FROM tblproducto WHERE tblproducto.idProducto = %s", GetSQLValueString($varProducto_DatosProducto, "int"));
$DatosProducto = mysql_query($query_DatosProducto, $conexionzapatos) or die(mysql_error());
$row_DatosProducto = mysql_fetch_assoc($DatosProducto);
$totalRows_DatosProducto = mysql_num_rows($DatosProducto);
?>
<!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"><!-- InstanceBegin template="/Templates/Principal.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Documento sin título</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="estilo/principal.css" rel="stylesheet" type="text/css" />
<?php include("includes/contador.php"); ?>
</head>
<body>
<div class="container">
<div class="header"><div class="headerinterior"><img src="images/logotrans.png" width="283" height="64" alt="Tienda" /></div></div>
<div class="subcontenedor">
<div class="sidebar1">
<?php include("includes/catalogo.php"); ?>
<!-- end .sidebar1 --></div>
<div class="content">
<h1><!-- InstanceBeginEditable name="Titulo" --><?php echo $row_DatosProducto['strNombre']; ?><!-- InstanceEndEditable --></h1>
<!-- InstanceBeginEditable name="EditRegion4" -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="documentos/productos/<?php echo $row_DatosProducto['strImagen']; ?>" width="450" height="450" /></td>
<td valign="top"><p><?php echo $row_DatosProducto['strNombre']; ?></p>
<p><?php echo $row_DatosProducto['dblPrecio']; ?> €</p>
<form name="FComprar" action="carrito_add.php" method="get">
<?php
mostrartallasdisponibles($row_DatosProducto['idProducto']);?>
<br />
Unidades: <select name="intCantidad" id="intCantidad">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
<option value="25">25</option>
</select>
<?php if ((isset($_SESSION['MM_IdUsuario'])) && ($_SESSION['MM_IdUsuario']!=""))
{?>
<p>
<input name="recordID" type="hidden" value="<?php echo $row_DatosProducto['idProducto']; ?>"/>
<input name="" type="submit" value="Comprar" /></p>
<?php }
else
{?>
Necesitas <a href="alta_usuario.php">darte de alta</a> para comprar. Es gratuito.
<?php }?>
</form><br />
<p>Caracteristicas:</p><p><?php echo $row_DatosProducto['strCaracteristicas']; ?></p></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<!-- InstanceEndEditable --><!-- end .content --></div>
<!-- end .subcontenedor -->
</div>
<div class="footer"><?php include("includes/pie.php"); ?>
<!-- end .footer --></div>
<!-- end .container --></div>
</body>
<!-- InstanceEnd --></html>
<?php
mysql_free_result($DatosProducto);
?>