PHP Classes

File: updatecompany.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   Leaflet PHP MySQL Map   updatecompany.php   Download  
File: updatecompany.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: 516 bytes
 

Contents

Class file image Download
<?php

 
require_once("db.php");

 
$id = intval($_POST['company']);
 
$details = strip_tags($_POST['details']);
 
$latitude = strip_tags($_POST['latitude']);
 
$longitude = strip_tags($_POST['longitude']);
 
$telephone = strip_tags($_POST['telephone']);
 
$keywords = strip_tags($_POST['keywords']);

 
$conn->updateCompany( $id, $details, $latitude, $longitude, $telephone, $keywords);
?>
<!DOCTYPE html>
<html>
 <head>
  <title>Company updated</title>
 </head>
 <body>
  <h1>Company has been updated</h1>
 </body>
</html>