PHP Classes

File: deleteareadb.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   Leaflet PHP MySQL Map   deleteareadb.php   Download  
File: deleteareadb.php
Role: Example script
Content type: text/plain
Description: Example
Class: Leaflet PHP MySQL Map
Manage a Leaflet based map with locations in MySQL
Author: By
Last change: DB config
Date: 6 years ago
Size: 219 bytes
 

Contents

Class file image Download
<?php
 
require_once("db.php");

 
$id = intval($_POST['area']);

 
$conn->deleteArea($id);
?>
<!DOCTYPE html>
<html>
 <head>
  <title>Area deleted</title>
 </head>
 <body>
  <h1>Area has been deleted</h1>
 </body>
</html>