How to get the index number of the posts?

So you want the index numbers for the posts array returned by WP_Query ?

Try this:

if ( $manset_posts->have_posts() ) {
     foreach( $manset_posts->posts as $key => $value ) {
          // $key is the index number for each post
     }
}