Fixed tools/env utilities
[u-boot-openmoko/mini2440.git] / tools / bddb / dodellog.php
blob9dd78c11b6d0f313ccc5b8e04a2d5bfdaad2fedd
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 // dodelete page (hymod_bddb / boards)
9 require("defs.php");
11 pg_head("$bddb_label - Delete Log Entry Results");
13 if (!isset($_REQUEST['serno']))
14 die("the board serial number was not specified");
15 $serno=intval($_REQUEST['serno']);
17 if (!isset($_REQUEST['logno']) || $_REQUEST['logno'] == 0)
18 die("the log entry number not specified!");
19 $logno=$_REQUEST['logno'];
21 mysql_query("delete from log where serno=$serno and logno=$logno");
23 if(mysql_errno()) {
24 $errstr = mysql_error();
25 echo "\t<font size=+4>\n";
26 echo "\t\t<p>\n";
27 echo "\t\t\tThe following error was encountered:\n";
28 echo "\t\t</p>\n";
29 echo "\t\t<center>\n";
30 printf("\t\t\t<b>%s</b>\n", $errstr);
31 echo "\t\t</center>\n";
32 echo "\t</font>\n";
34 else {
35 echo "\t<font size=+2>\n";
36 echo "\t\t<p>\n";
37 echo "\t\t\tThe log entry with log number <b>$logno</b>\n";
38 echo "\t\t\tand serial number <b>$serno</b> ";
39 echo "was successfully deleted\n";
40 echo "\t\t</p>\n";
41 echo "\t</font>\n";
44 <p>
45 <table width="100%">
46 <tr>
47 <td align=center>
48 <a href="brlog.php?serno=<?php echo "$serno"; ?>">Back to Log</a>
49 </td>
50 <td align=center>
51 <a href="index.php">Back to Start</a>
52 </td>
53 </tr>
54 </table>
55 <?php
56 pg_foot();