There's a typo in the code example on http://wordpress.org/extend/plugins/posts-to-posts/. It's small but it will break your page if you just copy/paste.
while( $connected->have_posts() ) $connected->the_post();
should read
while( $connected->have_posts() ) : $connected->the_post();