Сначала хочу поблагодарить организаторов этого форума и сайта, так как неоднократно пользовалась имеющейся здесь информацией, и свой первый сайт написала с помощью уроков на "ТвойВеб".
Хочу попросить помощи. Сейчас создаю сайт е-коммерс, все делаю по учебнику, так как сама почти ничего не понимаю в РНР, пользуюсь Dreamweaver. Возникла такая проблема: пишу страничку, где посетители могут добавлять товары в корзину. Есть, к примеру, 10 товаров, выбор делается с помощью чекбоксов, и потом все выделенное должно отправляться одной кнопкой "Купить" в БД. Но почему-то делается только одна запись в БД. Уже несколько дней бьюсь над этой задачей, и никак! Очень надеюсь на вашу помощь.
Код формуляра:
CODE:
<?php if(isset($_SESSION['MM_Username'])); {?>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<?php do { ?>
<img src="<?php echo $row_montages['img']; ?>" alt="<?php echo $row_montages['nom']; ?>">
<input type="checkbox" name="article" value="<?php echo $row_montages['nom']; ?>">
<?php } while ($row_montages = mysql_fetch_assoc($montages)); ?>
<input type="hidden" name="client" value="<?php echo $_SESSION['MM_Username'];?>">
<input type="submit" value="Commander">
<input type="hidden" name="MM_insert" value="form1">
</form>
<?php }?>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<?php do { ?>
<img src="<?php echo $row_montages['img']; ?>" alt="<?php echo $row_montages['nom']; ?>">
<input type="checkbox" name="article" value="<?php echo $row_montages['nom']; ?>">
<?php } while ($row_montages = mysql_fetch_assoc($montages)); ?>
<input type="hidden" name="client" value="<?php echo $_SESSION['MM_Username'];?>">
<input type="submit" value="Commander">
<input type="hidden" name="MM_insert" value="form1">
</form>
<?php }?>
И код скрипта вставки записи в БД:
CODE:
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO bp_panier (client, article) VALUES (%s, %s)",
GetSQLValueString($_POST['client'], "text"),
GetSQLValueString($_POST['article'], "text"));
mysql_select_db($database_bp, $bp);
$Result1 = mysql_query($insertSQL, $bp) or die(mysql_error());
$insertGoTo = "panier.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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;
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO bp_panier (client, article) VALUES (%s, %s)",
GetSQLValueString($_POST['client'], "text"),
GetSQLValueString($_POST['article'], "text"));
mysql_select_db($database_bp, $bp);
$Result1 = mysql_query($insertSQL, $bp) or die(mysql_error());
$insertGoTo = "panier.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
Пожалуйста, посмотрите где ошибка, сама не справляюсь! Заранее благодарю!