<?php $file=file("my_file.txt"); $count=count($file); for($i=0;$i<=$count;$i++) { $udata = explode(" ",$file[$i]); echo $udata[0].'<br>'; } ?>