ok, i think this is your problem:
you input these titles and the synopsis is in a textarea and someone is typing something like this:
this is the synopsis
and i want the new line
to show up
but it is showing up like:
this is the synopsis and i want the new line to show up
am i right, if so, you need to use nl2br()
this will convert the \n's to <br>'s for you when you don't echo it into a textarea
if you have
echo $synopsis;
use this instead
echo nl2br($synopsis);