View Single Post
  #9  
Old 12-21-2011, 02:21 AM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Alpho View Post
Okay I got this:
PHP Code:
echo(loadlines("levels/Staff_Commands.txt")); 
though, it returns 0
loadlines(); needs to be attached to a variable name:

PHP Code:
temp.l.loadlines("levels/Staff_Commands.txt");
echo(
temp.l); 
Reply With Quote