PHP Help...
PHP Help...
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- vaxorcist0
huh? don't really understand what you want....
you can use PHP to read a text file into an array..
file like;
(filename:colors.txt)
red
blue
green
fuschia
magenta
cyan$colors=file("colors.txt");
for($i=0;$i<sizeof($colors);$i++){
print "<br>$colors[$i]\n";
}