You have not specified a file name to open with fopen().
//will not work
$fp = fopen("", "r");
//will work
$fp = fopen("file.txt", "r");
"Harald Mohring" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I got the error-message:
> Warning: fopen("", "r") - Inappropriate ioctl for device
> what means ioctl?
> Harry
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

