call static block in view.phtml insted of phtml file

You can use the below code:

in .phtml file :

<?php
  echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); 
?> 

sample :

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('home')->toHtml(); ?> 

in static block / cms page :

{{block type="core/template" template="checkdelivery/checkdelivery.phtml"}}


If you have created CMS block named 'block_identifier' from admin panel. Then following will be code to call them in .phtml

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); 
?> 

Clear cache and reload your browser.