Mini-XML Home Page"); print("

\n" .""); html_end_row(); html_end_table(); $poll = get_recent_poll(); if ($poll > 0) { html_start_table(array("Current Poll [ " ."Show All ]")); html_start_row(); print(""); html_end_row(); html_end_table(); } print("" ."\n" ."
"); html_start_table(array("Quick Info"), "100%", "100%"); html_start_row(); print("" ."

" ."Stable Release: v2.2
" ."

Mini-XML is a small XML parsing library that you can use to " ."read XML and XML-like data files in your application without " ."requiring large non-standard libraries. Mini-XML only requires " ."an ANSI C compatible compiler (GCC works, as do most vendors' " ."ANSI C compilers) and a 'make' program.

\n" ."

Mini-XML provides the following functionality:

\n" ."
    \n" ."
  • Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded " ."XML files and strings.
  • \n" ."
  • Data is stored in a linked-list tree structure, " ."preserving the XML data hierarchy.
  • \n" ."
  • Supports arbitrary element names, attributes, and " ."attribute values with no preset limits, just available " ."memory.
  • \n" ."
  • Supports integer, real, opaque (\"cdata\"), and text " ."data types in \"leaf\" nodes.
  • \n" ."
  • Functions for creating, indexing, and managing trees of data.
  • \n" ."
  • \"Find\" and \"walk\" functions for easily locating and " ."navigating trees of data.
  • \n" ."
\n" ."
"); show_poll($poll); print("    " ."

Recent Articles [ Show All" ." ]

\n"); $result = db_query("SELECT * FROM article WHERE is_published = 1 " ."ORDER BY modify_date DESC LIMIT 8"); $count = db_count($result); if ($count == 0) print("

No articles found.

\n"); else { while ($row = db_next($result)) { $id = $row['id']; $title = htmlspecialchars($row['title'], ENT_QUOTES); $abstract = htmlspecialchars($row['abstract'], ENT_QUOTES); $create_user = sanitize_email($row['create_user']); $date = date("H:i M d, Y", $row['modify_date']); $count = count_comments("articles.php_L$id"); if ($count == 1) $count .= " comment"; else $count .= " comments"; print("

$title

\n" ."

$date by $create_user, $count
$abstract [ " ."Read ]

\n"); } } db_free($result); print("

\n"); html_footer(); // // End of "$Id$". // ?>