I have a problem with some PHP codes.
Message :
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in [document] on line 3
On line 3 , and also 8, of the code below...
PHP Code :
if (!$online)
{
echo "<img src="images/$onliner[$i]off.png" title="$server[$i]-Server Offline">";
$$onliner[$i] = "0";
}
else
{
echo "<img src="images/$onliner[$i]on.png" title="$server[$i]-Server Online">";
$$onliner[$i] = "1";
}
Waiting your answer to try to solve the problem...