- 2

who can help me here

Fill in the blanks to read and output the content of the file "nums.txt". $nums = file ("nums.txt"); foreach( $ as $num) { echo $num."<br />"; }

18th Sep 2016, 10:18 PM
Al Zied
Al Zied - avatar
4 Answers
+ 4
$nums = file("nums.txt"); foreach($nums as $num) { //the answer is "nums" echo $num."<br />"; }
20th Sep 2016, 6:22 AM
Hein Htut Aung
+ 1
$nums = file("nums.txt"); foreach($nums as $num) { echo $num."<br />"; }
18th May 2018, 9:46 AM
Mufeed V P
0
$nums = file("nums.txt"); foreach($nums as $num) { echo $num."<br />";
6th Aug 2018, 11:34 AM
Rinae Tshivhinda
Rinae  Tshivhinda - avatar
0
$nums = file ("nums.txt"); foreach( $nums as $num) { echo $num."<br />"; }
25th Oct 2018, 1:27 PM
Houcem Eddine Aouissaoui
Houcem Eddine Aouissaoui - avatar