A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: php script to save user specs

Threaded View

  1. #4
    Senior Member Wancieho's Avatar
    Join Date
    May 2002
    Posts
    370
    Try this:
    Code:
    $info="Your info to store";
    $filename="news.txt";
    $fp = fopen($filename, "a");
    $line = $info;
    fputs($fp, $line, $size);
    fclose($fp);
    For a count just make each users details appear on only 1 line then count the lines.
    Last edited by Wancieho; 10-16-2002 at 12:07 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center