<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>abc</title> </head> <body> <?php $fp = fopen("data.txt", "r"); while ($line = fgets($fp)) { echo "$line"; } fclose($fp); ?> </body> </html>