readContact.php

Source of readContact.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
  <title>readContact.php</title>
</head>
<body>
<h1>Contacts</h1>
<div>
<?php

//open up the contact file
$fp = fopen("contacts.txt", "r") or die("error");

//print a line at a time
while (!feof($fp)){
  $line = fgets($fp);
  print "$line <br />";
}

//close the file
fclose($fp);

?>
</div>
    
</body>
</html>