Quote:
Originally Posted by Fou-Lu
The problem here is the use of \. \ followed by another character may be a command which is interpreted in double quotations. Escape the slash with a \ or convert them to front slashes.
|
Better yet put that absolute path in single quotes and use forward slashes since it is a literal value.
PHP Code:
$fp = fopen('C:/Users/Desktop/new_user_data.csv', 'r');