mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
10 lines
148 B
HTML
10 lines
148 B
HTML
<?
|
|
$file = "eqemu_config.xml";
|
|
if(open(F, "<$file")) {
|
|
$request->get("Content-type", "text/xml");
|
|
while(<F>) {
|
|
print;
|
|
}
|
|
close(F);
|
|
}
|
|
?> |