-
Notifications
You must be signed in to change notification settings - Fork 9
/
order-info-delpic.php
34 lines (30 loc) · 965 Bytes
/
order-info-delpic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
############################################
# ThaiRIS (Thai Radiology Information System)
# Version: 1.0
# File last modified: 8 Nov 2016
# File name:
# Description :
# http://www.thairis.net
# Email : [email protected]
############################################
$filename = $_GET['filename'];
$ACCESSION = $_GET['ACCESSION'];
$MRN = $_GET['MRN'];
$path = "document-uploads/uploads/".$ACCESSION."/";
echo "<body bgcolor=#E8E8E8>";
echo "<center> Delete Image</center>";
echo "<center><table>";
echo "<tr><td>";
echo "<img src=$path/$filename width=350><br />";
echo "<center>Filename : $filename </center>";
echo "</td>";
echo "<td>";
echo "<form action=order-info-delpic2.php method=post>";
echo "<input type=hidden name=filename value=$filename>";
echo "<input type=hidden name=ACCESSION value=$ACCESSION>";
echo "<input type=hidden name=MRN value=$MRN>";
echo "<input type=submit>";
echo "Delete this images";
echo "</td></tr></table>";
?>