Link to home
Start Free TrialLog in
Avatar of Billy Ma
Billy MaFlag for Hong Kong

asked on

How to use PHP to read a file on the server?

How to use PHP to read a file on the server?
Avatar of Roonaan
Roonaan
Flag of Netherlands image

$content = file_get_contents('filename.txt');
ASKER CERTIFIED SOLUTION
Avatar of psychic_zero
psychic_zero
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Billy Ma

ASKER

Why the extra spaces are deleted?
Avatar of kambo_rambo
kambo_rambo

$datafp = fopen("yourfile.txt", "r");
$line = fgets($datafp);