Here's one way assign each line:

<?php

$file_loc = "D:\\web\\bev\\file.txt";

$whattoread = fopen($file_loc, "r");

$country = fgets($whattoread, 4096);
$state = fgets($whattoread, 4096);
$city = fgets($whattoread, 4096);
$company = fgets($whattoread, 4096);
$division = fgets($whattoread, 4096);
$url = fgets($whattoread, 4096);
$email = fgets($whattoread, 4096);
        
echo "country is $country<br>";
echo "state is $state<br>";
echo "city is $city<br>";
echo "comapny is $company<br>";
echo "division is $division<br>";
echo "url is $url<br>";
echo "email is $email<br>";

fclose($whattoread);
?>


Bev

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 01, 2002 5:17 PM
To: php-general
Subject: [PHP] extracting data from text file


Hello ,
I have a text file that looks like this. each entry is on a different
line I need to pull the data out of
it and put each line of data into its own variable

US
State
City
Company Name
Section 2
www.domain.com
[EMAIL PROTECTED]

I have trend this but it does not work properly

        $fp = @fopen(file.txt,"r");
          $line = explode("\n",$fp);
          $valueC = "$line[0]";
          $valueST = "$line[1]";
          @fclose($fp);

-- 
Best regards,
 rdkurth                          mailto:[EMAIL PROTECTED]


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


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

Reply via email to