1 <?php
// php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?>
4 // Murray Jensen <Murray.Jensen@csiro.au>
5 // CSIRO Manufacturing Science and Technology, Preston Lab
7 // dodelete page (hymod_bddb / boards)
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");
24 $errstr = mysql_error();
25 echo "\t<font size=+4>\n";
27 echo "\t\t\tThe following error was encountered:\n";
29 echo "\t\t<center>\n";
30 printf("\t\t\t<b>%s</b>\n", $errstr);
31 echo "\t\t</center>\n";
35 echo "\t<font size=+2>\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";
48 <a href
="brlog.php?serno=<?php echo "$serno"; ?>">Back to Log
</a
>
51 <a href
="index.php">Back to Start
</a
>