Jump to content

[SOLVED] data2file


jmr3460

Recommended Posts

I am trying to get this script to work. Where have I gone wrong. This file writes the first string of the first row only. What did I do wrong?

 

<?php
include("dbin.php");
$table = "home";
mysql_connect($host, $user, $pass);
mysql_select_db($database) or die(mysql_error());
$data = mysql_query("SELECT id FROM $table");
$info = mysql_fetch_array($data);
$log = $info['id'] . " | " . $info['ip'] . " | " . $info['time'] . " | " . $info['browser'];
$filename = 'log.txt';
if (is_writable($filename)) {
    if (!$handle = fopen($filename, 'a')) {
         echo "Cannot open file ($filename)";
         exit;
    }
    while (fwrite($handle, $log) === FALSE) {
        echo "Cannot write to file ($filename)";
        exit;
    }
    echo "Success, wrote () to file " . $filename;
    fclose($handle);
} else {
    echo "The file $filename is not writable";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/161613-solved-data2file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.