Modifying my chat website and I want to add a random assortment of prefixes when people join.
right not the php code is:
define("ANONYMOUS_PREFIX", "user");
which outputs as: user9367 joined.
Here's what I want done, but I have no hope with php.
define("ANONYMOUS_PREFIX", "$array");
$array = array(Mrs., Mr., Ms., Prof., Dr., Gen., Rep., Sen., St.);
Not to mention making it randomize.