![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archivelooping and writing to a file
From: Aaron Reimann <aaron.reimann@gmail.com>
Date: Mon Jul 18 2005 - 04:35:11 CEST
I have a function here that will (with some other functions not shown
function display_song_list($fd, $e) {
echo ("<songs>\n");
foreach ($e as $error) {
$c = pg_numrows($fd['result']);
echo ("<song title=\"{$r['song_title']}\" artist=\"{$r['artist']}\"
}
echo ("</songs>");
}
I need some help writing the info to a text file. I know the 'fopen'
Thank you for your help.
Aaron
|