Hi,
ich hab mir mal zum Test ne kleine
DLL gebastelt:
Delphi-Quellcode:
function EchoString(aString: ShortString): ShortString;
begin
Result := aString + '
!!!!!! Aus der DLL !!!!!! ';
end;
exports
EchoString;
begin
end.
Ich möchte diese
DLL per
PHP ansprechen.
Weiß jemand wie das geht?