Hi,
I am working on a new webpage. The end-user wants to use an editor (FCKEditor, e.g.) to update a new image and text (weekly to monthly). This has to appear on many pages. In order that he should update once, I am using a code section in the other pages to display the contents of the WYSIWYG section on the Home page.
Everything is fine till I actually display teh content using "echo $content;". It only displays the entire HTML string; I tried to surround $content with single and double quotes, but no change. However, when I echo the literal string contained in $content, it works, like :
echo '<p align="center"><img class="" height="223" alt="" width="320" align="left" src="
http://www.pif.at/media/fi_3.gif" /> <font size="5"><font color="#800000"><strong>"HAUS DES MONATS!!!!</strong></font></font></p> <p> <strong><font color="#ff0000">Great location:</font> </strong>Reisingergasse 8/8</p> <p> <font color="#ff0000"><strong>District:</strong></font> 10th</p> <p> <font color="#ff0000"><strong>Public Transport Connections:</strong></font> Great</p> <p> <font color="#ff0000"><strong>Price:</strong></font> Only € 100 million!</p> <p> <font color="#ff0000"><strong>Available: </strong></font>immediately</p>';
How can I display the content that it shows what I want it to show?
Thanks for your help