MINI2440: start.S removed MINI2440 specific speed
[u-boot-openmoko/mini2440.git] / tools / bddb / donewlog.php
blob7635d2992d9d3c471c79cced9ef0e3c0f33fe858
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 // doedit page (hymod_bddb / boards)
9 require("defs.php");
11 pg_head("$bddb_label - Add Log Entry Results");
13 if (!isset($_REQUEST['serno']) || $_REQUEST['serno'] == '')
14 die("serial number not specified!");
15 $serno=intval($_REQUEST['serno']);
17 if (isset($_REQUEST['logno'])) {
18 $logno=$_REQUEST['logno'];
19 die("log number must not be set ($logno) when Creating!");
22 $query="update log set serno=$serno";
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'";
29 if (isset($_REQUEST['who'])) {
30 $who=$_REQUEST['who'];
31 $query.=", who='" . $who . "'";
34 if (isset($_REQUEST['details'])) {
35 $details=$_REQUEST['details'];
36 $query.=", details='" . rawurlencode($details) . "'";
39 // echo "final query = '$query'<br>\n";
41 $sqlerr = '';
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();
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";
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";
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();