Your problem is here:

echo $zeile+'<br>';

To echo two or more strings or variables you need to use a dot,
or a comma, like this:

echo $zeile.'<br>';

or simply put it all together in double quotes:

echo "$zeile<br>";

Svemir Brkic
www.baltok.com
Delivering Your Vision to the World Wide Web



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to