Click to See Complete Forum and Search --> : PHP News site


vicpal25
11-18-2004, 01:49 PM
Hello you guys!
I am an intermediate PHP developer and I just began a site. It will be a hip-hop community site that my client wants to put up. I was hoping anyone can give some ideas or tips on how to handle multiple news articles. I was thinking of placing stories in a database and then dynamically placing them by date, level of importance, category and so forth. Does anyone have any other suggestions? comments on how to approach this project in a more constructive way? Thanks!

Jona
11-18-2004, 02:52 PM
You might want to just get a free content management system (CMS) (http://www.textpattern.com/) until you have better learned PHP and a database system.

vicpal25
11-18-2004, 04:00 PM
Thats a nice tool....I mean I am frequent enough to dynamically place stories and retreive them..I mean is there anyone that has built a news site?

DJsAC
11-18-2004, 04:28 PM
its pretty simple
Save the data to a database
add a column with the date.

then Select from table Where date >= todays_date()-7, Order by desc date

Echo those values into a table and you've got a news script

(easier said than done ;))