How is the [quote]
Code: Select all
etc systems setup within forums?
A starting point or understanding how its done ..
ThanksModerator: General Moderators
Code: Select all
etc systems setup within forums?
A starting point or understanding how its done ..
ThanksCode: Select all
$sql = mysql_query("SELECT sender, subject, message FROM pm WHERE id=$id") or die (mysql_error());
while ($row = mysql_fetch_array($sql)) {
$sender = $rowї"sender"];
$subject = $rowї"subject"];
$message = eregi_replace('\їquote]', '<b>Quote:</b><blockquote style="width: 100%; margin: 3px 8px 3px 16px; color: #000; background-color: #333; border: 2px solid #808080; font-size: 8pt;">', $message);
$message = eregi_replace('\ї/quote]', '</blockquote>', $message);Code: Select all
$sql = mysql_query("SELECT sender, subject, message FROM pm WHERE id=$id") or die (mysql_error());
while ($row = mysql_fetch_array($sql)) {
$sender = $rowї"sender"];
$subject = $rowї"subject"];
$message = ereg_replace('\їquote]', '<b>Quote:</b><blockquote style="width: 100%; margin: 3px 8px 3px 16px; color: #000; background-color: #333; border: 2px solid #808080; font-size: 8pt;">', $rowї'message']);
$message = ereg_replace('\ї/quote]', '</blockquote>', $rowї'message']);