Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Only variables can be passed by reference

Status
Not open for further replies.

codecref

Programmer
Joined
Dec 8, 2003
Messages
118
Location
US
ERROR : Fatal error: Only variables can be passed by reference in D:\ on line 143


in this line >

socket_select($sett,null,null,5);

please help me what to do. I am learning php (VERY NEWBIE)

Thanks
 

Hi guys
no need anymore :)
I could fixed it by change this :

socket_select($sett,null,null,5);

to :

socket_select($sett,$write=null,$except=null,5);

thanks anyway
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top