Welcome to Dream.In.Code
Become a PHP Expert!

Join 136,924 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,802 people online right now. Registration is fast and FREE... Join Now!




Alphabetizing List

 
Reply to this topicStart new topic

Alphabetizing List, Strange Problem

Dezmond
24 Mar, 2008 - 07:56 PM
Post #1

New D.I.C Head
Group Icon

Joined: 20 Feb, 2007
Posts: 12


Dream Kudos: 50
My Contributions
I'm making a program that will alphabetize lines of a text file (jigglypuff.txt)
And for some reason whenever I use it the file just becomes blank...

CODE
$gamelist = fopen("jigglypuff.txt", 'r');
    flock($gamelist, LOCK_SH);
    while (!feof($gamelist)) {
        $data = fgets($gamelist, 500);
        $i = 0;
        $games[$i] = $data;
        $i++;
    }
    flock($gamelist, LOCK_UN);
    fclose($gamelist);
    
    sort($games);
    $gn = count($games);
    
    $gamelist = fopen("jigglypuff.txt", 'w');
    flock($gamelist, LOCK_EX);
    for($i = 0; $i <= $gn; $i++) {
        fwrite($gamelist, $games[$i]);
    }
    flock($gamelist, LOCK_UN);
    fclose($gamelist);


Any help would be greatly appreciated!
User is offlineProfile CardPM
+Quote Post

no2pencil
RE: Alphabetizing List
24 Mar, 2008 - 08:04 PM
Post #2

My fridge be runnin OH NOEZ!
Group Icon

Joined: 10 May, 2007
Posts: 6,495



Thanked: 66 times
Dream Kudos: 2425
Expert In: Goofing Off

My Contributions
QUOTE

CODE

    while (!feof($gamelist)) {
        $data = fgets($gamelist, 500);
        $i = 0;
        $games[$i] = $data;
        $i++;
    }


Initialize the $i variable outside of the while loop. If you set it to zero before you set the data, you'll overwrite array element zero everytime, & nothing else will get set.

CODE

$i = 0;
....
    while (!feof($gamelist)) {
        $data = fgets($gamelist, 500);
        $games[$i] = $data;
        $i++;
    }

User is online!Profile CardPM
+Quote Post

Dezmond
RE: Alphabetizing List
24 Mar, 2008 - 08:09 PM
Post #3

New D.I.C Head
Group Icon

Joined: 20 Feb, 2007
Posts: 12


Dream Kudos: 50
My Contributions
wow... I'm such a tard for missing that.

You're the best, thanks a ton!
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/3/08 10:18PM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month