Query from multiple category (and)

Have you looked up the WP Codex on WP_Query for categories?

They provide an example here. Also your category variable should probably only have one $. The way you’ve written your custom query also looks wrong, are you using WP_Query?

$query = new WP_Query( array( 'category__and' => array( 2, 6 ) ) );