yes, bold and italics haven't been added yet, except for the buttons...
like I said, the color system has some flaws right now, but it's not entirely off for now...
the "you're all alone!" should only be there when there's 1 person... i've been trying to figure out WHY it's not... but I think because I didn't add in font colors for them, that's what's messing it up on me...
EDIT: most flaws above are now fixed...
the "you're all alone" problem stems from this code, but idk what's wrong...
php
$sql3 = mysql_query("SELECT COUNT(*) AS total,username,id,fontColor FROM flex_users WHERE chat_last_active >= '$time2' GROUP BY id,username,password,fontColor,chat_last_active ORDER BY id")or die(mysql_error());
$row3 = mysql_fetch_array($sql3);
if($row3['total'] == '1'){
$output .= "<fontColor>#000000</fontColor><bold>no</bold><italics>no</italics><username>You're all alone!</username><br />";
}EDIT2: fixed the all alone bug when you're not all alone...
Bold and Italics will be added soon, though i'm still not sure on how to do bbcode... I have a bbcode parser in PHP, but it wouldn't transfer correctly through XML, so i'd have to recode one in Flex, which i'm not sure how to do...
EDIT3:
QUOTE
Doesn't seem to have issues with sql injections, or html injections.
lol... they're shouldn't be... I used just about everything known to man on it

php
trim(addslashes(htmlspecialchars(strip_tags(mysql_real_escape_string($_POST['message'])))))
and i'm pretty sure there's not much more >.>
This post has been edited by JBrace1990: 23 Jun, 2008 - 10:32 AM