-rw-r--r-- | html.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -112,16 +112,25 @@ void html_attr(char *txt) txt = t+1; } t++; } if (t!=txt) html(txt); } +void html_hidden(char *name, char *value) +{ + html("<input type='hidden' name='"); + html_attr(name); + html("' value='"); + html_attr(value); + html("'/>"); +} + void html_link_open(char *url, char *title, char *class) { html("<a href='"); html_attr(url); if (title) { html("' title='"); html_attr(title); } @@ -150,8 +159,9 @@ void html_filemode(unsigned short mode) else if (S_ISLNK(mode)) html("l"); else html("-"); html_fileperm(mode >> 6); html_fileperm(mode >> 3); html_fileperm(mode); } + |