welp I just need 1 quick help, I have this on my website as
<? $checkplayersonlinequery = mssql_query("SELECT CurrPlayer FROM ServerStatus WHERE ServerID=1");
$checkplayergetrow = mssql_fetch_row($checkplayersonlinequery);
echo "<span name='player'>" . $checkplayergetrow[0] . "</span>"; ?>
that is meant to grab a column called “CurrPlayer” but it only outputs " . $checkplayergetrow[0] . “”; ?> on my website
To explain: I need it to echo the playercount as being the total value 1-100 depending on how many players are online according to the database.