示例#1
0
<?php

//Configure DATABASE
require_once 'blip_4815162342_108.php';
$conn = db_connect();
//Start Script
//Input variables from Angular
$location = json_decode(file_get_contents("php://input"));
$locationID = $location->LocationID;
$delete = deleteLocation($locationID);
function deleteLocation($locationID)
{
    global $conn;
    $deleteQuery = mysqli_query($conn, "CALL DeleteLocation('{$locationID}')") or die("Query fail: " . mysqli_error($conn));
}
mysqli_close($conn);
示例#2
0
        addEmployee();
        break;
    case "updateEmployee":
        updateEmployee();
        break;
    case "deleteEmployee":
        deleteEmployee();
        break;
    case "insertLocation":
        addLocation();
        break;
    case "updateLocation":
        updateLocation();
        break;
    case "deleteLocation":
        deleteLocation();
        break;
}
displayHeader();
// Show HTML header
displayNavigation();
// Show Navigation
// Functions that generate content to browser
switch (getCurrentAction()) {
    case "jobs":
        displayAllJobs();
        break;
    case "addJob":
        displayAddJob();
        break;
    case "editJob":