The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Date Format Question
I'm using the snippet of code Freddie posted here to get the date format:
Code:
SELECT DATE_FORMAT(eventdate,'%b-%d') AS eventdate Can I make it display as April-18 (ie, full month name)? |
#2
|
||||
|
||||
Instead of %b use %M
|
#3
|
||||
|
||||
Thanks neo
Now another question. I have this code: Code:
<?PHP require("./global.php"); $events = $DB_site->query("SELECT eventid, DATE_FORMAT(eventdate,'%M %d') AS eventdate, subject, venue, location FROM calendar_events WHERE public='1' ORDER BY eventdate LIMIT 10"); while ($event = $DB_site->fetch_array($events)) { echo "<font size=1 face=\"verdana, helvetica\">" . $event['eventdate'] . " <a href=\"$bburl/calendar.php?s=&action=getinfo&eventid=" . $event['eventid'] . "\">" . $event['subject'] . "</a> " . $event['location'] . "</font>"; } ?> |
#4
|
||||
|
||||
|
#5
|
||||
|
||||
There are two ways I know of doing it. Either add another row like "monthnum" and sort by that or, change the %M so that it reads in the date like 0-5-3 and then use MONTHNAME which would output May.
|
#6
|
||||
|
||||
:ermm:
Where would I put MONTHNAME? |
#7
|
||||
|
||||
Hmm well it would have to be in a different query maybe. BUt your best shot as far as I know would tp just enter the month number aswell for sorting purposes.
|
#8
|
||||
|
||||
I worked it out - thanks for pointing me in the right direction I changed the code to:
SELECT eventid, DATE_FORMAT(eventdate,'%M %d') AS date, eventdate, ... And then just changed the later $event['eventdate'] to $event['date'] - so, it lists the month but sorts by the correct date Thanks Neo |
#9
|
||||
|
||||
Now to try and find out how to make each row have an alternating background colour (like the posts in showthread)
|
#10
|
||||
|
||||
Well have fun
I am off the the old sleep |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|