htmlcode:=HttpLoader.Get('http://www.meineurl.de/fbedVereinsspielplan.php?edDatumVon=10.10.2012')
Du musst die Parameter per POST übergeben und nicht via GET.
Delphi-Quellcode:
Params := TStringList.Create;
try
Params.Add('
ParamName=ParamValue');
// das = trennt name und value
htmlcode := httploader.Post(
URL, Params);
finally
FreeAndNil(Params);
end;