<?php $handle = fopen("/Users/ssarwe/Downloads/clientsToSet.txt", "r") or die("Couldn't get handle"); if ($handle) { while (!feof($handle)) { $buffer = fgets($handle, 4096); echo $buffer.PHP_EOL; } fclose($handle); }
You have javascript disabled. You will not be able to edit any code.