Mini-XML Home Page"); print("

\n" .""); html_end_row(); html_end_table(); html_start_table(array("Quick Info"), "100%", "100%"); html_start_row(); print(""); html_end_row(); html_end_table(); print("" ."\n" ."
"); html_start_table(array("Current Poll [ " ."Show All ]")); html_start_row(); print(""); show_poll(get_recent_poll()); print("" ."

" ."Stable Release: v1.3
" ."Developer Release: v2.0rc1

\n" ."

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" ."
\n" ."
    " ."

Recent Articles [ Show All" ." ]

\n"); $result = db_query("SELECT * FROM article WHERE is_published = 1 " ."ORDER BY modify_date DESC LIMIT 4"); $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: index.php,v 1.5 2004/05/20 03:38:42 mike Exp $". // ?>