Posts: 1,832
Location: Somewhere else entirely
|
He said that in his first post I think.
SpottyDog, can you check the HTML source that reaches your browser? I'm guessing that what is actually in your database is along the lines of <b>TEXT HERE</b> .
Somewhere in your script to insert things into the database did you make use of the function htmlspecialchars() ? That will transform < int <, ' into " etc, and is a security thing so that people can't submit eg <SCRIPT> tags into your forms. What it means is that when you echo part of the database, the html entity (that's what < , > are) get's printed instead of interpreted as HTML.
You either need to store things away into your database differently, or map from the entities back to the characters manually. You can do this by writing:
PHP Code:
echo html_entity_decode($home1);
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|