|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Php question
I'm having problem with displaying text from a TXT file.
I'm using the while ($feof) way for reading the file. Now the problem is --> it loads over the maximum execution time and the joke is it's only 1 single sentence in that text file HELP! Is there anyway to speed up that darn thing, or even a better way of reading/displaying a text file? |
|
#2
|
|||
|
|||
|
RE: Php question
$fcontents = implode ('', file ('/path/to/file.txt'));
echo $fcontents; |
|
#3
|
||||
|
||||
|
RE: Php question
shouldn't that be:
while (!$feof) B |
|
#4
|
|||
|
|||
|
RE: Php question
thanks i'll let u know how i go..
|
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Coding > Php question |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|