forked from forceworkbench/forceworkbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsv_preview.php
More file actions
26 lines (23 loc) · 875 Bytes
/
Copy pathcsv_preview.php
File metadata and controls
26 lines (23 loc) · 875 Bytes
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
<?php
require_once 'session.php';
require_once 'shared.php';
require_once 'put.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="UTF-8" />
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
<link rel="stylesheet" href="<?php echo getPathToStaticResource('/style/master.css'); ?>" type="text/css" />
<link rel="Shortcut Icon" type="image/png" href="<?php echo getPathToStaticResource('/images/bluecube-16x16.png'); ?>" />
<title>Workbench - CSV Preview</title>
</head>
<body>
<?php
if (isset($_SESSION['csv_array'])) {
displayCsvArray($_SESSION['csv_array']);
} else {
displayError("No CSV has been uploaded, or it is no longer active");
}
include_once 'footer.php';
?>