View Single Post
Old 08-20-2004, 06:34 PM  
JSA Matt
So Fucking Banned
 
Join Date: Aug 2003
Location: San Diego, CA
Posts: 5,464
PHP Code:
<?php
//    List

    
$data file("file.txt");
    
    if (
count($data) < 0)    {
        for (
$i 0$i count($data); $i++)    {
            list(
$name,$icq,$email) = explode(":"$data[$i]);
            
            echo 
"Name: " $name "<BR>";
            echo 
"ICQ: " $icq "<BR>";
            echo 
"Email: " $email "<BR><BR>";
        }
    } else {
        echo 
"Data File Empty";
    }
?>
JSA Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote