Ok, here's the code:
$sql = "SELECT * FROM events WHERE id='$_POST[event_id]'";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
$strMail = <table>
<tr>
<td>";
if ($row[title] != ""
$strMail .= "<div class=elevenb>$row[title]</div>";
$strMail .= "$row[description]
</td>
</tr>
</table>";
And then I send it using the mail() function.
And the data that it's displaying is:
A native of England, Wright came to the United States in 1978. Prior to joining the Wolves, he spent three years working for the state of Minnesota, first as a consultant working on bids for major national and international events, including the programming for the $17.4 million National Sports Center in Blaine. Prior to that, Wright also served ! as general manager for two Major Indoor Soccer League teams, the Pittsburgh Spirit (1981-86) and the Minnesota Strikers (1986-87).
(where if you look 3 lines up from the bottom, the ! appears). It's happening only on this page... And I've never seen it before... It's the strangest thing...
Cole
