You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
457 B
15 lines
457 B
<?php
|
|
require_once("../conn.php");
|
|
|
|
if(isset($_GET['contractid']) && $_GET['contractid']!=""){
|
|
try{
|
|
$id = $_GET["contractid"];
|
|
$sql_str = "DELETE FROM contract_m_signed_back WHERE id = :contractid";
|
|
$stmt = $conn->prepare($sql_str);
|
|
$stmt->bindParam(":contractid", $id);
|
|
$stmt->execute();
|
|
header("HTTP/1.1 204 No Content");
|
|
}catch(PDOException $e){
|
|
die("ERROR!!!: ". $e->getMessage());
|
|
}
|
|
}
|