$prefilename = date("m-d-y");

          $filename = "$prefilename.txt";

          $db = mysql_connect("localhost","cloft","spring");

          mysql_select_db("countryloft");

          // get requests from table
          $result = mysql_query("SELECT * FROM catalogreq WHERE
PROCESSED IS NULL");

          $row = mysql_fetch_array($result);

          $fileresults = "$row[0],$row[1]\n";

          $fp = fopen("$DOCUMENT_ROOT/catalogreq/$filename","w");

          fwrite($fp, $fileresults);

          fclose($fp);

          $updatereq = mysql_query("UPDATE catalogreq SET PROCESSED =
'Y'");

-----Original Message-----
From: daniel [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 25, 2002 4:15 PM
To: James Kupernik
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] fwrite()


> Still when I make the changes suggested the file will not be created, 
> yet I get no form of an error message.
> 
> Is there something else I'm missing?

Please post your new code for review.


Daniel J. Lashua



************************************************ 
This message has been scanned for computer 
viruses and none were found. 

Country Curtains Information Systems Department 
************************************************ 




************************************************ 
This message has been scanned for computer 
viruses and none were found. 

Country Curtains Information Systems Department 
************************************************ 



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to