Your problem is here:
echo $zeile+'';
To echo two or more strings or variables you need to use a dot,
or a comma, like this:
echo $zeile.'';
or simply put it all together in double quotes:
echo "$zeile";
Svemir Brkic
www.baltok.com
Delivering Your Vision to the World Wide Web
--
PHP Wind
Well, it looks like you're trying to add the value of $zeile to '',
which is going to
give you a "0" or null return.
try .. echo $zeile."";
and see if that doesn't solve your problem.
"Php News" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> My code:
> $New