summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/html.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/include/html.inc.php')
-rw-r--r--frontends/php/include/html.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php
index 1ddd76b6..c636cf84 100644
--- a/frontends/php/include/html.inc.php
+++ b/frontends/php/include/html.inc.php
@@ -31,6 +31,11 @@
return "<option value=\"$value\" ".iif(isset($_GET[$var])&&$_GET[$var]==$value,"selected","").">$label";
}
+ function form_input($name, $value, $size)
+ {
+ return "<input class=\"biginput\" name=\"$name\" size=$size value=\"$value\">";
+ }
+
function url1_param($parameter)
{
global $_GET;