Successfully using the following to only show the current day's entries:
$today = getdate();
query_posts('year=' .$today["year"] .'&monthnum=' .$today["mon"] .'&day=' .$today["mday"]);
Need to also sort by ascending order, but the sort is being completely ignored:
<?php $posts=query_posts($query_string.'&order=ASC');
if (have_posts()) : ?>
<?php
$today = getdate();
query_posts('year=' .$today["year"] .'&monthnum=' .$today["mon"] .'&day=' .$today["mday"]);
while (have_posts()) : the_post(); ?>
What in the name of Zurg do I need to do to get both of these things to happen?