Place this in a WordPress template file (like single.php) to check if a post has a gallery inserted into it.
if (strpos($post->post_content,'[gallery') === false){
$gallery = 0;
// no gallery, so do what you want here
}else{
$gallery = 1;
// yes sir, there's a gallery on this post, so do something
}
Questions and Comments are Welcome