Я хочу настроить предупреждения 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!");
}