Sandbox
A little test involving ©opyright
<?php
$v = "string"; // sample initialization
?>
html text
<?php
echo $v; // end of php code
?>
[First]
Something=2
More=3.14
[Now]
Random=words
procedure ActivateServer();
begin
end;
procedure AppOnIdle(Ticks: integer);
begin
end;
function OnCommand(ID: Byte; Text: string): boolean;
begin
//NOTE: This function will be called when an admin types a / command.
Result := false; // Return true if you want to ignore the command typed.
end;
function OnPlayerCommand(ID: Byte; Text: string): boolean;
begin
//NOTE: This function will be called when [_ANY_] player types a / command.
Result := false; //Return true if you want disable the command typed.
end;
procedure OnException(ErrorMessage: string);
begin
// WriteFile('ErrorLog.txt', ErrorMessage);
end;
procedure ActivateServer();
begin
end;
procedure AppOnIdle(Ticks: integer);
begin
end;
function OnCommand(ID: Byte; Text: string): boolean;
begin
//NOTE: This function will be called when an admin types a / command.
Result := false; // Return true if you want to ignore the command typed.
end;
function OnPlayerCommand(ID: Byte; Text: string): boolean;
begin
//NOTE: This function will be called when [_ANY_] player types a / command.
Result := false; //Return true if you want disable the command typed.
end;
procedure OnException(ErrorMessage: string);
begin
// WriteFile('ErrorLog.txt', ErrorMessage);
end;