\n" . "Workunits in Batch Number: \n" . "
" . "Number of Workunits to Show: \n" . "
" . "Number of Results Done: \n" . "
" . "Number of Results Failed: \n" . "
" . "Number of Results Unsent: \n" . "
" ); print_checkbox("Show XML Docs", "show_xml_docs", $show_xml_docs); printf( "\n" ); print_submit("Query","new_query"); print_submit("Show More","show_more"); printf( "\n" ); echo "
Query is: $english_query
"; print_query_count("select count(*) as cnt from workunit" . $count_query, $wus_to_show, $start_at ); $result = mysql_query($query); while (($workunit = mysql_fetch_object($result)) && ($wus_to_show > 0)) { if ($start_at <= 0) { show_workunit($workunit,$show_xml_docs); $wus_to_show--; } else { $start_at--; } } print_page_end(); ?>