and what problem is that?>

how about just using the example?
http://www.php.net/manual/en/function.file.php

$lines = file ('http://www.example.com/');

// Loop through our array, show html source as html
source; and line numbers too.
foreach ($lines as $line_num => $line) {
    echo "Line #<b>{$line_num}</b> : " .
htmlspecialchars($line) . "<br>\n";
}



--- Pushpinder Singh Garcha <[EMAIL PROTECTED]>
wrote:
> Hello all
> 
> I am having some problem with arrays
> 
> THIS IS THE PHP CODE
> 
>   $temp = file("file.txt");
> 
>     if(!$temp)
>     {
>       echo "File could not be read by array !!
> <br>";
>       exit;
>     }
>     else
>     echo "Array was opened !!<br><br>";
> 
>   $x = count($temp);
>   echo "Array Count is: $x<br><br>";
>   echo "$temp[0]<br>";
> 
>   //$P = str_replace("\r\n", "\n" , $temp);
> 
>   echo "<br>First: $temp[0]";
>   $P_new = explode(" ",$temp);
>   echo "<br>Next: $P_new[0]";
> 
> 
> THIS IS THE TEXT FILE CALLLED ''file.txt''
> 
> abc111
> asd123
> aqw234
> www234
> edr234
> vfr456
> 
> 
> 
> When I echo "$temp[0]" ... I get abc111 asd123
> aqw234 www234 edr234 
> vfr456 on one straight line, which is weird. I
> should get it on 
> separate lines.. Also I am unable to separate the
> lines of the file 
> using the explode().
> 
> Any help will be highly appreciated
> 
> --Pushpinder
> 
> 
> 
> Pushpinder Singh Garcha
> _________________________________
> Web Architect
> 


__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to