View Single Post
Old 06-08-2005, 12:17 PM   #6 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 734
DJMaze is on a distinguished road
Code:
ereg_replace('\n', '', $file_contents);
This should be double quoted
Code:
ereg_replace("\n", '', $file_contents);
Huge difference here
DJMaze is offline   Reply With Quote