Sorry about that but I can't figure out what's wrong with my code.
I am trying to sort my posts from category #3 alphabetically but I think I'm doing it wrong.
<?php
$catquery = new WP_Query( 'cat=3' );
while($catquery->have_posts()) : $catquery->the_post('&orderby=title&order=ASC');
?>