-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_dnld_submit.php
80 lines (68 loc) · 2.14 KB
/
data_dnld_submit.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
//require('sw_range_class.php');
require('se_aoi_class.php');
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="StyleSheet" href="styles/popups.css" type="text/css" />
<link rel="stylesheet" href="styles/custom-theme/jquery-ui-1.8.6.custom.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" ></script>
<script type="text/javascript" src="javascript/jquery-ui-1.8.6.custom.min.js" ></script>
<style type="text/css">
/* <![CDATA[ */
.ui-widget {font-size: 11px;}
button {
width: 100px;
margin: 20px;
}
/* ]]> */
</style>
<script language="javascript" type="text/javascript">
/* <![CDATA[ */
$(document).ready(function() {
$("button").button().click(function(evt) {
evt.preventDefault();
window.close();
});
});
/* ]]> */
</script>
</head>
<body>
<?php
require('se_config.php');
pg_connect($pg_connect);
$username = $_SESSION['username'];
$email = $_SESSION['email'];
$lcov = $_POST['lcov'];
$steward = $_POST['steward'];
$pds = $_POST['strpds'];
$aoi_name = $_POST['aoi_name'];
$extent_save = $_POST['ext_save'];
$lcov = $_POST['lcov'];
$steward = $_POST['steward'];
$r_map = $_POST['r_export'];
$r_species = $_POST['r_species'];
//var_dump($_POST);
if (strlen($pds) != 0){
$pds_ar = explode(':', $pds);
foreach ($pds_ar as $c){
$spp[] = strtolower("d_".$c);
}
//var_dump($pds_ar);
$pds = implode(':', $spp);
}
$query = sprintf("insert into data_dnld(username, email, aoi_name, bnd_box, lcov, steward, pds, r_map, r_species, chkd) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', false)", $username,
$email, $aoi_name, $extent_save, $lcov, $steward, $pds, $r_map, $r_species);
//echo $query;
pg_query($query);
?>
<p>Your request has been submitted as a batch request.</p>
<p>An email will be sent to <?php echo $email; ?> in a few minutes to notify you the request is ready for download.</p>
<button>Close</button>
</body>
</html>