]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - tools/bddb/donewlog.php
Patches by Murray Jensen, 17 Jun 2003:
[karo-tx-uboot.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@cmst.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 ($serno == 0)
14                 die("serial number not specified!");
15
16         if (isset($logno))
17                 die("log number must not be set ($logno) when Creating!");
18
19         $query="update log set serno=$serno";
20
21         list($y, $m, $d) = split("-", $date);
22         if (!checkdate($m, $d, $y) || $y < 1999)
23                 die("date is invalid (input '$date', yyyy-mm-dd '$y-$m-$d')");
24         $query.=", date='$date'";
25
26         if (isset($who))
27                 $query.=", who='" . $who . "'";
28
29         if (isset($details))
30                 $query.=", details='" . rawurlencode($details) . "'";
31
32         // echo "final query = '$query'<br>\n";
33
34         $sqlerr = '';
35
36         mysql_query("insert into log (logno) values (null)");
37         if (mysql_errno())
38                 $sqlerr = mysql_error();
39         else {
40                 $logno = mysql_insert_id();
41                 if (!$logno)
42                         $sqlerr = "couldn't allocate new serial number";
43                 else {
44                         mysql_query($query . " where logno=$logno");
45                         if (mysql_errno())
46                                 $sqlerr = mysql_error();
47                 }
48         }
49
50         if ($sqlerr == '') {
51                 echo "<font size=+2>\n";
52                 echo "\t<p>\n";
53                 echo "\t\tA log entry with log number '$logno' was " .
54                         "added to the board with serial number '$serno'\n";
55                 echo "\t</p>\n";
56                 echo "</font>\n";
57         }
58         else {
59                 echo "\t<font size=+4>\n";
60                 echo "\t\t<p>\n";
61                 echo "\t\t\tThe following SQL error was encountered:\n";
62                 echo "\t\t</p>\n";
63                 echo "\t\t<center>\n";
64                 printf("\t\t\t<b>%s</b>\n", $sqlerr);
65                 echo "\t\t</center>\n";
66                 echo "\t</font>\n";
67         }
68
69 ?>
70 <p></p>
71 <table width="100%">
72 <tr>
73   <td align=center><a href="brlog.php?serno=<?php echo "$serno"; ?>">Go to Browse</a></td>
74   <td align=center><a href="index.php">Back to Start</a></td>
75 </tr>
76 </table>
77 <?php
78         pg_foot();
79 ?>