]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - tools/bddb/newlog.php
gic: fixed compilation error in GICv2 wait for interrupt macro
[karo-tx-uboot.git] / tools / bddb / newlog.php
1 <?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?>
2 <?php
3         // (C) Copyright 2001
4         // Murray Jensen <Murray.Jensen@csiro.au>
5         // CSIRO Manufacturing Science and Technology, Preston Lab
6
7         // edit page (hymod_bddb / boards)
8
9         require("defs.php");
10
11         pg_head("$bddb_label - New Log Entry");
12
13         if (!isset($_REQUEST['serno']) || $_REQUEST['serno'] == '')
14                 die("serial number not specified or invalid!");
15         $serno=intval($_REQUEST['serno']);
16
17         if (isset($_REQUEST['logno'])) {
18                 $logno=$_REQUEST['logno'];
19                 die("log number must not be specified when adding! ($logno)");
20         }
21 ?>
22 <form action=donewlog.php method=POST>
23 <p></p>
24 <?php
25         echo "<input type=hidden name=serno value=$serno>\n";
26
27         begin_table(3);
28
29         // date date
30         print_field("date", array('date' => date("Y-m-d")));
31
32         // who char(20)
33         print_field("who", array());
34
35         // details text
36         print_field_multiline("details", array(), 60, 10, 'text_filter');
37
38         end_table();
39 ?>
40 <p></p>
41 <table width="100%">
42 <tr>
43   <td align=center>
44     <input type=submit value="Add Log Entry">
45   </td>
46   <td align=center>
47     <input type=reset value="Reset Form Contents">
48   </td>
49 </tr>
50 </table>
51 </form>
52 <?php
53         pg_foot();
54 ?>