str = g_string_new ("");
g_string_append_printf (str,
- "<%s id=\"%s\"",
- name,
- id);
+ "<%s",
+ name);
+
+ if (id != NULL)
+ {
+ g_string_append_printf (str,
+ " id=\"%s\"",
+ id);
+ }
l = ar_attrs->len;
for (i = 0; i < l; i++)
}
}
- if (!with_name)
+ if (!with_name
+ && id != NULL)
{
g_string_append_printf (str,
" name=\"%s\"",
main (int argc, char *argv[])
{
GString *str;
+ GString *select_content;
str = g_string_new ("");
g_string_append_printf (str, "%s<br/>\n", zak_cgi_tag_submit ("submit", NULL));
+ select_content = g_string_new ("");
+ g_string_append_printf (select_content,
+ zak_cgi_tag_tag ("option", NULL,
+ "value", "1",
+ "content", "One",
+ NULL));
+ g_string_append_printf (select_content,
+ zak_cgi_tag_tag ("option", NULL,
+ "value", "2",
+ "content", "Two",
+ NULL));
+ g_string_append_printf (select_content,
+ zak_cgi_tag_tag ("option", NULL,
+ "value", "3",
+ "content", "Three",
+ NULL));
+ g_string_append_printf (str, "%s<br/>\n", zak_cgi_tag_tag ("select", "idselect", "content", select_content->str, NULL));
+
zak_cgi_main_out (NULL, str->str);
return 0;