]> git.ipfire.org Git - people/ms/u-boot.git/blob - tools/bddb/donewlog.php
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
[people/ms/u-boot.git] / tools / bddb / donewlog.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 // doedit page (hymod_bddb / boards)
8
9 require("defs.php");
10
11 pg_head("$bddb_label - Add Log Entry Results");
12
13 if (!isset($_REQUEST['serno']) || $_REQUEST['serno'] == '')
14 die("serial number not specified!");
15 $serno=intval($_REQUEST['serno']);
16
17 if (isset($_REQUEST['logno'])) {
18 $logno=$_REQUEST['logno'];
19 die("log number must not be set ($logno) when Creating!");
20 }
21
22 $query="update log set serno=$serno";
23
24 list($y, $m, $d) = split("-", $date);
25 if (!checkdate($m, $d, $y) || $y < 1999)
26 die("date is invalid (input '$date', yyyy-mm-dd '$y-$m-$d')");
27 $query.=", date='$date'";
28
29 if (isset($_REQUEST['who'])) {
30 $who=$_REQUEST['who'];
31 $query.=", who='" . $who . "'";
32 }
33
34 if (isset($_REQUEST['details'])) {
35 $details=$_REQUEST['details'];
36 $query.=", details='" . rawurlencode($details) . "'";
37 }
38
39 // echo "final query = '$query'<br>\n";
40
41 $sqlerr = '';
42
43 mysql_query("insert into log (logno) values (null)");
44 if (mysql_errno())
45 $sqlerr = mysql_error();
46 else {
47 $logno = mysql_insert_id();
48 if (!$logno)
49 $sqlerr = "couldn't allocate new serial number";
50 else {
51 mysql_query($query . " where logno=$logno");
52 if (mysql_errno())
53 $sqlerr = mysql_error();
54 }
55 }
56
57 if ($sqlerr == '') {
58 echo "<font size=+2>\n";
59 echo "\t<p>\n";
60 echo "\t\tA log entry with log number '$logno' was " .
61 "added to the board with serial number '$serno'\n";
62 echo "\t</p>\n";
63 echo "</font>\n";
64 }
65 else {
66 echo "\t<font size=+4>\n";
67 echo "\t\t<p>\n";
68 echo "\t\t\tThe following SQL error was encountered:\n";
69 echo "\t\t</p>\n";
70 echo "\t\t<center>\n";
71 printf("\t\t\t<b>%s</b>\n", $sqlerr);
72 echo "\t\t</center>\n";
73 echo "\t</font>\n";
74 }
75
76 ?>
77 <p></p>
78 <table width="100%">
79 <tr>
80 <td align=center><a href="brlog.php?serno=<?php echo "$serno"; ?>">Go to Browse</a></td>
81 <td align=center><a href="index.php">Back to Start</a></td>
82 </tr>
83 </table>
84 <?php
85 pg_foot();
86 ?>