Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
G-Rard_B
Worker
Worker



Joined: Sep 01, 2004
Posts: 105

PostPosted: Tue Sep 07, 2004 7:03 am Reply with quote

Hey! I am working on a website (InstantPolitics.us). My dad and I are going to be administrators. We have a phpBB forum and an upcoming chat (FlashChat). I wanted to make it easy for my dad and I to post announcements on the home page (like in PHP-Nuke). I didn't want to use MySQL for that so I'm storing everything in a .txt file. The script works perfectly. I just have 2 questions.

How do you make it so that the new announcements are placed on top of the old ones? I'm assuming I'll have to work with Arrays, but I'm not sure

Also, how do you make it so that only the latest announcements (5 for example) are placed on the home page?

Thaks,
Gerard
 
View user's profile Send private message
G-Rard_B







PostPosted: Wed Sep 08, 2004 10:05 pm Reply with quote

Nobody? I think I have to put each line as an array, and then use the arsort() function and cut out some of the file so that only 5 lines show. I've been trying and this is what I've come up with. It only shows "1" where I want it to show the announcements....

Code:
$thefile = "announce.txt";

$open = fopen($thefile, "r");
if($open){
$data = file($thefile);
$getline = explode("</center>", $data);
$announce = arsort($getline);
print "$announce";
}
fclose($open);

If you must know, each line nds with "</center>" which is why I used it in the explode() function.

Thanks,
Gerard
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©