PHP Classes

File: deleteLocation.php

Recommend this page to a friend!
  Classes of ganesh kavhar   PHP Event Planner   deleteLocation.php   Download  
File: deleteLocation.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Event Planner
Application to help users to organize events
Author: By
Last change:
Date: 1 year ago
Size: 382 bytes
 

Contents

Class file image Download
<?php
require_once 'classes/Location.php';
require_once
'classes/LocationTableGateway.php';
require_once
'classes/Connection.php';


if (!isset(
$_GET['id'])) {
    die(
"Illegal request");
}
$id = $_GET['id'];

$connection = Connection::getInstance();

$gateway = new LocationTableGateway($connection);

$gateway->delete($id);

header('Location: viewLocations.php');