-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlis_species_resources_page.tpl.php
More file actions
53 lines (40 loc) · 1.23 KB
/
lis_species_resources_page.tpl.php
File metadata and controls
53 lines (40 loc) · 1.23 KB
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
<!-- Title and guide text -->
<style>
.newspaper_col {
-webkit-columns: 100px 2; /* Chrome, Safari, Opera */
-moz-columns: 100px 2; /* Firefox */
columns: 100px 2;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
}
.dl_no_break {
-webkit-column-break-inside: avoid; /* Chrome, Safari */
page-break-inside: avoid; /* Theoretically FF 20+ */
break-inside: avoid-column; /* IE 11 */
display:table; /* Actually FF 20+ */
}
</style>
<div>
<h1>Available resources for legume species at LIS</h1>
<span></span>
</div>
<hr/>
<div id="debgMessage">
<?php
//FOR DEBUG MESSGES IF ANY
//echo "<pre>";
//print_r($excel_array);
//print_r($excel_array['sheet1_species'][1]);
//print_r($headers_array);
//print($excel_array['sheet1_species'][1]['4']);
//print_r($excel_array);
//print_r(array_keys($excel_array[0])); // gives the keys
//print($excel_array[0]['mapsKey']); //works
//echo "</pre>";
?>
</div>
<div id="speciescontent" class="newspaper_col">
<?php echo $species_html; ?>
</div>
<!-- SCRATCH PAD -->