Перенаправление PHP, если вставка Oracle завершается успешно - PullRequest
0 голосов
/ 27 февраля 2019

Я хочу настроить предупреждения Bootstrap для успешных и неудачных вставок.Я осмотрелся и не смог найти примеров людей, имеющих 2 перенаправления: одно для успешной вставки и одно для неудачной вставки.

 if(isset($_POST['CountryID'])) {

            $CountryID = $_POST['CountryID'];
            if(isset($_POST['CountryName'])) {
                $CountryName = $_POST['CountryName'];
            }
            if(isset($_POST['GPD'])){
                $GDP = $_POST['GPD'];
            }

            $stmt = oci_parse($conn, "INSERT INTO COUNTRY (COUNTRYNAME, GDP) VALUES (:CountryName, :GDP) WHERE COUNTRYID = :CountryID");

            ocibindbyname($stmt, ":CountryID", $CountryID);
            oci_bind_by_name($stmt, ":CountryName", $CountryName);
            oci_bind_by_name($stmt, ":GDP", $GDP);

            oci_execute($stmt);
            oci_commit($conn);
            oci_free_statement($stmt);

//insert if successful here
            header("Location: ../index.php?Success=Country has been updated!");
//insert else here
            header("Location: ../index.php?Danger=Country update failed!");

    }

Ответы [ 2 ]

0 голосов
/ 28 февраля 2019
oci_execute($stmt);
$Affected = oci_num_rows($stmt);
oci_commit($conn);


// echo $Gross;
// echo $CountryName;
if(count($Affected) > 0){
    header("Location: ../index.php?Success=$CountryName has been created!");
} else {
    header("Location: ../index.php?Danger=Country hasn't been created!");
}

oci_free_statement($stmt);
oci_close($conn);
0 голосов
/ 28 февраля 2019

Вам нужно исправить свой запрос, например ниже

INSERT INTO COUNTRY
  (COUNTRYID,COUNTRYNAME, GDP)
VALUES
  (:CountryID,:CountryName, :GDP);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...