print content depending on specific content types

This only prints content when the node is of the specified content type

Print into your node.tpl.php

Snippet:
<?php
// Replace content_type with the name of your content type
if ($node->type=="content_type") {
    print
something..
}
?>