$headline_begin = "<span class=\"headline\">";
$headline_end = "</span><P>";
I'm using the following to retrieve the text block from the db:
$result = mysql_query("SELECT * FROM content_pages ORDER BY id ASC");
while ($row = mysql_fetch_array($result)) {
echo $row["text"]; }
The actual text in the database is the following:
$headline_begin Lorem ipsum dolor sit amet $headline_end Consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
I'm trying to simplify text formatting for non-html users by using variables to apply CSS styles...
Thanks for your help