Is there any way to put a line break into a string in a single database cell, so that when that string is echoed in php, the string is echoed on two lines?
Do you want it to be echoed in two lines on a web page? In that case:
$mystring="bla bla bla<BR>bla bla bla"; echo $mystring;
Dear Sarah,
It is a matter of using <br> html tag. Example. echo "Solomon <br> Worku";
result:
Solomon Worku
Enjoy..........
But if i put a <br> within a database cell, and then echo the contents of that cell, it echos bla bla <br> bla bla!
More help please!
Ok, once again ignore my previous comment. I failed to spot a small error on my part, and was too quick to assume it failed. My apologies. Sarah.