In a simple textfile, there's a list like this.
1 2 3 4 .. ..
How to read it in PHP file,i.e. i want to read it in <select>field like this. <select><option>1st line from textfile<option>2nd line from textfile and so on. Please help Thanks
Tried the manual? There are better ways imho. but this was posted at the very top:
Example 1. Reading a file line by line
$fd = fopen ("/tmp/inputfile.txt", "r"); while (!feof ($fd)) { $buffer = fgets($fd, 4096); echo $buffer; } fclose ($fd);