// i read this variable from the DB
$message = $db_Message
// i pass it to a function
echo "function($message)";
------
in the HTML it gets displayed like this
function('<H1>Hello</H1>
<P><FONT color=#ff0000>World</FONT></P>')
obviously this doesn't work for me because i need it to be like this
function('<H1>Hello</H1><P><FONT color=#ff0000>World</FONT></P>')
i need to do some manipulation in $message = $db_Message to have the string in this way <H1>Hello</H1><P><FONT color=#ff0000>World</FONT></P>
not this way
<H1>Hello</H1>
<P><FONT color=#ff0000>World</FONT></P>
any ideas?
$message = $db_Message
// i pass it to a function
echo "function($message)";
------
in the HTML it gets displayed like this
function('<H1>Hello</H1>
<P><FONT color=#ff0000>World</FONT></P>')
obviously this doesn't work for me because i need it to be like this
function('<H1>Hello</H1><P><FONT color=#ff0000>World</FONT></P>')
i need to do some manipulation in $message = $db_Message to have the string in this way <H1>Hello</H1><P><FONT color=#ff0000>World</FONT></P>
not this way
<H1>Hello</H1>
<P><FONT color=#ff0000>World</FONT></P>
any ideas?