|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-22 15:51 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 15:00:01 2025 UTC |
The code below works fine, I have it running on a Redhat Linux 7.1 machine with PHP 4.04pl1. The problem is that it does not work on a Cobalt Raq4i with PHP 4.03pl1 or PHP 4.06. I have checked Cobalt's website for any info regarding this issue but have found nothing, just links back to www.php.net Does anyone know where the problem lays? Thank You <? //open a file and print each line $myFile = file ("http://www.php.net"); for ($index = 0; $index < count($myFile); $index++) { print ($myFile[$index]); } ?>