-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathedit.php
36 lines (32 loc) · 810 Bytes
/
edit.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
<?php
include("config_defaults.php");
include("config.php");
include("inc/header.php");
include("inc/logbook.php");
$Logbook = new Logbook($DbSpawner->newdb(), $log_id);
include("inc/parse_edit.php");
?>
<html>
<head>
<?php
echo '<title>' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . ' \'s Logbook</title>';
include("inc/metaheader.php");
?>
<meta charset="UTF-8">
</head>
<body style="overflow:auto;">
<?php
echo '<div id="head">' . "\n";
echo '<h1 align="center">Logbook of ' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . '</h1><br /><br />';
echo '</div>' . "\n";
include ("inc/edit_input.php");
?>
<?php
include("inc/edit_proc.php");
echo '<p align="right">' . $Logbook->count_qsos( $log_id ) . ' QSO in Log</p>' . "\n";
?>
</body>
<?php
include("inc/metafooter.php");
?>
</html>