PDA

View Full Version : date blues


Dave#
07-19-2003, 02:00 PM
I have a script that pulls the latest eventd from my VB, the problem is that the date gets pulled in American rather than European format:

<?php

include('../global.php');

$events = $DB_site->query("SELECT event, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
echo "<li><font size=\"1\">".$event['eventdate']." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>

anyone help me get the date in European Format?

dd-mm-yy

TIA

Gary King
07-19-2003, 02:40 PM
<?php

include('../global.php');

$events = $DB_site->query("SELECT event, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
list($year,$month,$day)=split("-",$event['eventdate']);
echo "<li><font size=\"1\">$day-$month-$year <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>

Dave#
07-19-2003, 02:53 PM
Thanks Gary -

I ended up doing it like this:

<?php

include('../global.php');

$events = $DB_site->query("SELECT event, DATE_FORMAT(eventdate,'%d %M') AS date, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
echo "<li><font size=\"1\">".$event['date']." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>


The only problem with this is I can't seem to change the date format to support the actual day - like Friday 13th September

cheers

Dave

Gary King
07-19-2003, 04:45 PM
Here you go :)
I changed include() to require(), you should use require instead of include, because the script becomes useless if it can't include the global.php
Only use include() if the script can still execute without including the file.

<?php

require('../global.php');

$events = $DB_site->query("SELECT event, DATE_FORMAT(eventdate,'%d %M') AS date, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
$timestring=strtotime($event['date']);
$date=date("l jS F",$timestring);
echo "<li><font size=\"1\">".$date." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>

Dave#
07-19-2003, 08:24 PM
Today at 06:45 PM Gary W said this in Post #4 (https://vborg.vbsupport.ru/showthread.php?postid=418990#post418990)
Here you go :)
I changed include() to require(), you should use require instead of include, because the script becomes useless if it can't include the global.php
Only use include() if the script can still execute without including the file.

<?php

require('../global.php');

$events = $DB_site->query("SELECT event, DATE_FORMAT(eventdate,'%d %M') AS date, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
$timestring=strtotime($event['date']);
$date=date("l jS F",$timestring);
echo "<li><font size=\"1\">".$date." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>

This gives me the date like

2003-07-23

Rather than

Friday 23rd June

Dave

Velocd
07-19-2003, 09:26 PM
<a href="http://us4.php.net/manual/en/function.date.php" target="_blank">http://us4.php.net/manual/en/function.date.php</a>

Gary King
07-19-2003, 10:34 PM
Today at 05:24 PM Dave# said this in Post #5 (https://vborg.vbsupport.ru/showthread.php?postid=419041#post419041)
This gives me the date like

2003-07-23

Rather than

Friday 23rd June

Dave

Not for me.

Dave#
07-20-2003, 07:01 PM
Today at 12:34 AM Gary W said this in Post #7 (https://vborg.vbsupport.ru/showthread.php?postid=419067#post419067)
Not for me.

must of done a typo first time - works great - sincere thanks

Dave

Gary King
07-20-2003, 07:22 PM
Glad I could help :)

Dave#
07-24-2003, 05:13 PM
Gary - any idea why the code would give the icorrect day for dates in 2004?

http://www.cpfc.org/fixtures/

Gary King
07-24-2003, 06:26 PM
Looks fine to me.

Could you point out which one is incorrect?

Dave#
07-24-2003, 06:39 PM
Today at 08:26 PM Gary W said this in Post #11 (https://vborg.vbsupport.ru/showthread.php?postid=420306#post420306)
Looks fine to me.

Could you point out which one is incorrect?

the last one for example

Friday 9th May Coventry (A)

Should say Sunday, I think all the days are wrong in 2004

Dave#
07-27-2003, 10:43 PM
did you manage to have a look at this Gary ?

Gary King
07-27-2003, 11:56 PM
Sorry, didn't know there was a new reply :o

Here's the answer :)

<?php

require('../global.php');

$events = $DB_site->query("SELECT event, eventdate AS date, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
$timestring=strtotime($event['date']);
$date=date("l jS F",$timestring);
echo "<li><font size=\"1\">".$date." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>

Dave#
07-28-2003, 07:06 AM
Today at 01:56 AM Gary W said this in Post #14 (https://vborg.vbsupport.ru/showthread.php?postid=421102#post421102)
Sorry, didn't know there was a new reply :o

Here's the answer :)

<?php

require('../global.php');

$events = $DB_site->query("SELECT event, eventdate AS date, eventdate, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= NOW()
ORDER BY eventdate LIMIT 8");
if ($DB_site->num_rows($events)) {
echo "<ul>";
while ($event = $DB_site->fetch_array($events)) {
$timestring=strtotime($event['date']);
$date=date("l jS F",$timestring);
echo "<li><font size=\"1\">".$date." <a
href='calendar.php?s=$session[sessionhash]&action=getinfo&eventid=".$event['eventid']."'>".$event['subject']."</a> <br>
";
}
} else {
echo "No Events";
}
echo "</ul>";
?>


excellent - thanks a million Gary

Gary King
07-28-2003, 03:21 PM
Yep glad I could help :)