u-boot-clean-batt-charge-patch.patch
[u-boot-openmoko/mini2440.git] / tools / bddb / newlog.php
blob609bb855c5ad5863d312548d9609593da1ab13a2
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
7 // edit page (hymod_bddb / boards)
9 require("defs.php");
11 pg_head("$bddb_label - New Log Entry");
13 if (!isset($_REQUEST['serno']) || $_REQUEST['serno'] == '')
14 die("serial number not specified or invalid!");
15 $serno=intval($_REQUEST['serno']);
17 if (isset($_REQUEST['logno'])) {
18 $logno=$_REQUEST['logno'];
19 die("log number must not be specified when adding! ($logno)");
22 <form action=donewlog.php method=POST>
23 <p></p>
24 <?php
25 echo "<input type=hidden name=serno value=$serno>\n";
27 begin_table(3);
29 // date date
30 print_field("date", array('date' => date("Y-m-d")));
32 // who char(20)
33 print_field("who", array());
35 // details text
36 print_field_multiline("details", array(), 60, 10, 'text_filter');
38 end_table();
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();