all i want is to display the contains from pageset.txt line by line.
ok i have this code:
$lines = file('pageset.txt');
foreach($lines as $line) {
// do something with $line.
$hh = $line . "<br/>";
echo $hh;
now i want to display it line by line as you see there is
so it means each contains should display line by line and so it must however it doesnt display line by line and the bad thing is it only display one contains from pageset.txt. hope someone here could help, thank you in advance.