I would go for that too.
The line you are currently using:
<?php printf ("%s\n", $myrow["NewsDetails"]); ?>
is a little over the top.
The variable you are printing is a string, so using printf() to 'format' the string as a string is not needed, you can just print the variable, or echo it. We use echo because there is a microscopic speed advantage of echo over print.