RE: [PHP-DB] One additional thought

2005-09-11 Thread Bastien Koert
fwrite is the command you are looking for to write to a file what are you trying to insert to all pages? Bastien From: "Ron Piggott" <[EMAIL PROTECTED]> Reply-To: "Ron Piggott" <[EMAIL PROTECTED]> To: "PHP DB" Subject: [PHP-DB] One additional though

[PHP-DB] One additional thought

2005-09-11 Thread Ron Piggott
I have this PHP code below that loads a web page into the "$message" variable $lineArray = file($web_page); // make an empty variable first $message = ""; // concat all array element foreach($lineArray as $eachLine) { $message .= $eachLine; } $additional_text = "blah blah blah"; $message = $