PDA

View Full Version : date format


Lionel
10-17-2006, 01:42 AM
I am getting the dateline_from like 1160949600

I usually use the php date function to convert it to 2006-10-15 But I am having difficulties with the below. What should I use for that? Thanks.

<option
value=\"".mysql_result($getcalid,$cal,"eventid")."\"$calselected>".mysql_result($getcalid,$cal,dateline_from)."
- ".mysql_result($getcalid,$cal,"title")."</option>

k, never mind

MaryTheG(r)eek
10-20-2006, 04:48 PM
I didn't understood exactly where you want to add the date, but to assign to a variable a date is:

$myvariable[datefield] = vbdate($vbulletin->options['dateformat'], $myvariable['datefield'], '', '');

This convert the given date in the default date format.

Cheers
Maria

Lionel
10-20-2006, 07:06 PM
Thanks Microhellas. I got around it :-)

kj_ugs
03-28-2007, 06:39 PM
How do you convert a date into that format?

Found out how...

<?php
echo mktime(0, 0, 0, 09, 09, 2006);
echo "\n";
echo mktime(0, 0, 0, 9, 9, 2006);
?>

1133326800
1157774400