not related to vb version..Code syntax is wrong. You need to escape some "s inside your code. You should use this one:
PHP Code:
$post[coloredname] = $post[username];
$userid=$post[userid];
if ($userid == 6) { $post[coloredname] = "<font color=\"#cc0000\"><b><i>$post[username]</b></i></font>"; }
if ($userid == 5) { $post[coloredname] = "<font color=\"green\"><b>$post[username]</b></font>"; }
if ($userid == 7) { $post[coloredname] = "<font color=\"green\"><b>$post[username]</b></font>"; }
if ($userid == 10) { $post[coloredname] = "<font color=\"blue\">$post[username]</font>"; }
if ($userid == 1) { $post[coloredname] = "<font color=\"blue\">$post[username]</font>"; }
if ($userid == 3) { $post[coloredname] = "<font color=\"blue\">$post[username]</font>"; }
if ($userid == 4) { $post[coloredname] = "<font color=\"blue\">$post[username]</font>"; }
if ($userid == 2) { $post[coloredname] = "<font color=\"blue\">$post[username]</font>"; }
And as for optimising your code use this:
PHP Code:
$post[coloredname] = $post[username];
$userid=$post[userid];
if ($userid == 6 OR $userid == 5 OR $userid == 7) { $post[coloredname] = "<font color=\"green\"><b><i>$post[username]</b></i></font>"; }
else
{ $post[coloredname] = "<font color=\"blue\"><b><i>$post[username]</b></i></font>"; }
Enjoy..