Exemple #1
0
/**
 * @version 1.0.0.0
 * @author Jeferson Oliveira <*****@*****.**>
 * @copyright Copyright(c) 2015, Jeferson Oliveira. Licensed under the Apache
 *     License, Version 2.0 (the "License"); you may not use this file except
 *     in compliance with the License. You may obtain a copy of the License at
 *     
 *     http://www.apache.org/licenses/LICENSE-2.0
 *     
 *     Unless required by applicable law or agreed to in writing, software
 *     distributed under the License is distributed on an "AS IS" BASIS,
 *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *     See the License for the specific language governing permissions and
 *     limitations under the License.
 */

/**
 * Redirects the client to the URL he came from, adding new info to the query
 * string.
 */

if(isset($error)) {
	$query .= '&' . $error;
} else {
	$query .= '&status=success';
}

header('Location: ' . admin_url($query));

while(@ob_flush_end());
<?php

ob_start();
include "includes/header.php";
include "includes/functions.php";
$id = $_GET['id'];
$query = "DELETE FROM route WHERE id={$id} LIMIT 1";
if (mysql_query($query)) {
    header("Location: index.php");
    exit;
} else {
    echo "Error in deletion";
}
ob_flush_end();
mysql_close();