Current location: Hot Scripts Forums » Programming Languages » PHP » how would i go about this ...


how would i go about this ...

Reply
  #1 (permalink)  
Old 01-09-04, 09:01 PM
simone's Avatar
simone simone is offline
Newbie Coder
 
Join Date: Nov 2003
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
how would i go about this ...

Ok i want to customise a news script, so that every post with the same date, in the mysql DB, is echo'd within the one "box". So for example, i made three posts in one day i'd want it to show like this ...

-----------------------------
10/january/04
-----------------------------
POST #3 TITLE - 9:00pm
bleh bleh bleh bleh beh etc..

POST #2 TITLE - 11:30am
bleh bleh bleh bleh beh etc..

POST #1 TITLE - 7:00am
bleh bleh bleh bleh beh etc..

------------------------------

I know it would probbaly be done using an 'if' function i just dont know how to go about it.. help anyone?
Reply With Quote
  #2 (permalink)  
Old 01-10-04, 09:07 AM
hyjacked hyjacked is offline
Wannabe Coder
 
Join Date: Nov 2003
Location: New Brunswick, Canada
Posts: 174
Thanks: 0
Thanked 0 Times in 0 Posts
I don't think you would need an if statement, but you would definately need a loop of some sort to cycle through your results from the database.

your sql statement would be something like:
SELECT <all fields you wish to post> FROM NEWS_TABLE WHERE NEWS_DATE = '$date_to_display';

This should give you the results of all the entries for a given date, as you want. Next would be to post them on your page. something like the following should work:

PHP Code:

while ($row mysql_fetch_array($resultMYSQL_NUM)) {

       
//format your news data

hope this helps, if you need more info feel free to post back.
__________________
hyjacked
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 08:25 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.