<?php

// Test to see if heredoc works in sprintf

$page sprintf( <<<EOF
Hey, Check this %s out.
  Don't ya just love this %d
EOF
    ,
"Qube"1);
    
print 
$page;

?>