множественная вставка mysqli не передает все строки из массива - PullRequest
0 голосов
/ 19 сентября 2018

У меня большая проблема с моим кодом, я подозреваю.Он добавляет только первое из $species, $weight и $length.но если в $ _ Post есть более одного значения.Он должен также представить их из моей формы.У меня проблемы с видением, где я ошибся.Надеюсь, кто-нибудь может указать мне правильное направление?

<?php

require 'config.php';

$teamid = $_POST['teamid'];
$species = $_POST['species']; // Can be multiple values depending on how many lines added from form
$weight = $_POST['weight']; // Can be multiple values depending on how many lines added from form
$length = $_POST['length']; // Can be multiple values depending on how many lines added from form

// count($species),($weight),($length) - Should always be the same length

// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){

        // Prepare an insert statement
        $sql = "INSERT INTO indvejninger ( teamid, artid, vaegt, laengde) VALUES (?, ?, ?, ?)";

        if($stmt = $mysqli->prepare($sql)){

            foreach ($species as $key => $value) {

            // Bind variables to the prepared statement as parameters
            $stmt->bind_param("ssss", $_POST['teamid'], $param_species, $param_weight, $param_length);

            $param_species = $species[$key];
            $param_weight = $weight[$key];
            $param_length = $length[$key];

            // Attempt to execute the prepared statement
            if($stmt->execute()){
                // Records created successfully. Redirect to landing page
                header("location: index.php?limit=");
                exit();
            } else{
                echo "Something went wrong. Please try again later.";
            }
        }       

        // Close statement
        $stmt->close();

        }

    // Close connection
    $mysqli->close();
}

1 Ответ

0 голосов
/ 19 сентября 2018

Я обнаружил ошибку, после первой отправки она меняет URL.Таким образом, он не завершает другие представления.

        // Attempt to execute the prepared statement
        if($stmt->execute()){
            // Records created successfully. Redirect to landing page
            header("location: index.php?limit=");
            exit();
        } else{
            echo "Something went wrong. Please try again later.";
        }

Поэтому вместо этого мне нужно завершить другие представления и затем перенаправить на целевую страницу.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...