Hi,
ob_start(); include('testdatei.php'); $variable= ob_get_clean(); ob_end_clean();
warum rufst du ob_end_clean() zweimal auf?
ob_end_clean — Clean (erase) the output buffer and turn off output buffering ob_get_clean — Get current buffer contents and delete current output buffer
ah, mein Fehler - ich hatte zweimal "end" gesehen, anstatt einmal "get" und einmal "end".
Wer lesen kann, ist klar im Vorteil ...
So long,
Martin