Ejemplo n.º 1
0
<?php

ob_start();
include 'DbManager.php';
$dbman = new DbManager();
$dbman->deletePosting($_GET['id']);
$dbman->disconnect();
header("Location: index.php");
die;
Ejemplo n.º 2
0
<?php

ob_start();
include 'DbManager.php';
$dbman = new DbManager();
$dbman->deletePosting($_POST['id']);
$dbman->disconnect();
header("Location: posts");
die;