Raven2 Example

" . $line . ""; // Output remainder of poem lines. echo "
\n";

    while($line = fgets($poem, 100))
    {
        echo $line;
    }
    echo "
"; ?>