Re: [PHP] [php] read/write error
[email protected] (Robin Vickery)
| Newsgroups | php.general |
|---|---|
| Message-ID | <[email protected]> |
2009/6/8 HELP! <[email protected]> > opening of the sorket is ok and writting LOGIN packet to the sorket is also > ok but reading the response to know if the login is accepted or rejected is > a not OK. Don't use fread() to read from sockets, use stream_get_contents(). Example 3 on the fread() manual page tells you why. -robin