diff options
| author | wdenk <wdenk> | 2002-11-03 00:38:21 +0000 |
|---|---|---|
| committer | wdenk <wdenk> | 2002-11-03 00:38:21 +0000 |
| commit | 05bb0f7d1c79e55cde52f6395d8966cbeecf029e (patch) | |
| tree | a1e8b98a1838cba6e6f5c765d9d85339257c45f5 /tools/bddb/execute.php | |
| parent | 1d515fd1053ac7653ffc6030055a62ea8386f1c8 (diff) | |
Das U-Boot: Universal Boot Loader
Diffstat (limited to 'tools/bddb/execute.php')
| -rw-r--r-- | tools/bddb/execute.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/bddb/execute.php b/tools/bddb/execute.php new file mode 100644 index 00000000000..7adcfec2018 --- /dev/null +++ b/tools/bddb/execute.php @@ -0,0 +1,37 @@ +<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> +<?php + // (C) Copyright 2001 + // Murray Jensen <[email protected]> + // CSIRO Manufacturing Science and Technology, Preston Lab + + if (!isset($serno)) + $serno = 0; + else + $serno = intval($serno); + + if (!isset($submit)) + $submit = "[NOT SET]"; + + switch ($submit) { + + case "New": + require("new.php"); + break; + + case "Edit": + require("edit.php"); + break; + + case "Browse": + require("browse.php"); + break; + + case "Log": + require("brlog.php"); + break; + + default: + require("badsubmit.php"); + break; + } +?> |
