[PHP] Calendar Logic Help

2010-10-20 Thread Floyd Resler
I'm having problems getting my head around some login for a calendar. Specifically, the problem is drawing weekly views for events that span multiple days. I've gotten it so that if an event starts in the week being viewed, the days draw correctly for the remainder of the week. However, if

RE: [PHP] Calendar Logic Help

2010-10-20 Thread Tommy Pham
-Original Message- From: Floyd Resler [mailto:fres...@adex-intl.com] Sent: Wednesday, October 20, 2010 9:17 AM To: PHP Subject: [PHP] Calendar Logic Help I'm having problems getting my head around some login for a calendar. Specifically, the problem is drawing weekly views

Re: [PHP] Calendar Logic Help

2010-10-20 Thread Floyd Resler
On Oct 20, 2010, at 12:47 PM, Tommy Pham wrote: -Original Message- From: Floyd Resler [mailto:fres...@adex-intl.com] Sent: Wednesday, October 20, 2010 9:17 AM To: PHP Subject: [PHP] Calendar Logic Help I'm having problems getting my head around some login for a calendar

[PHP] calendar libs

2010-07-13 Thread Ricardo Martinez
Hi! i'm looking for a good calendar libs, want ask, if anyone knows a good library. thx! Ricardo

Re: [PHP] calendar libs

2010-07-13 Thread David Hutto
On Tue, Jul 13, 2010 at 2:04 PM, Ricardo Martinez harisel...@gmail.com wrote: Hi! i'm looking for a good calendar libs, want ask, if anyone knows a good library. thx! Ricardo This may hel, it's just a simple search for 'php calendar' : http://www.php-calendar.com/ -- PHP General

Re: [PHP] calendar libs

2010-07-13 Thread David Hutto
search for 'php calendar' : http://www.php-calendar.com/ This might help better as a reference: http://www.w3schools.com/php/php_ref_calendar.asp Not to say there isn't a builtin function, or. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] calendar libs

2010-07-13 Thread David Hutto
a good library. thx! Ricardo This may hel, it's just a simple search for 'php calendar' : http://www.php-calendar.com/ This might help better as a reference: http://www.w3schools.com/php/php_ref_calendar.asp Not to say there isn't a builtin function, or. minus the : Not to say

Re: [PHP] Calendar tutorial

2009-09-08 Thread tedd
can also learn and improve it on your own. Check out: http://www.php-calendar.com/ Here's an example of it working: http://php1.net/my-php-calendar/ I've had good luck with it and have been able to change things as I wanted. Cheers, tedd -- --- http://sperling.com http

[PHP] Calendar tutorial

2009-09-07 Thread Haig Davis
Dear PHP List Members, First off I am well aware that I can go online and download a PHP script to make a Calendar, it's not that I'm too cheap to buy the script it is that I want to work through and fully understand what I have so that I am intimately aware of every aspect of my project. What I

Re: [PHP] Calendar tutorial

2009-09-07 Thread viraj
On Tue, Sep 8, 2009 at 9:17 AM, Haig Davislevel...@gmail.com wrote: Dear PHP List Members, least get me started) that will allow me to schedule various multi day events and write the requests to a mySQL database. I would prefer something that is PHP/ mySQL, HTML and CSS no flash or Java. If

Re: [PHP] Calendar Problem

2009-08-12 Thread tedd
At 4:08 PM -0400 8/11/09, Robert Cummings wrote: tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept

Re: [PHP] Calendar Problem

2009-08-12 Thread Robert Cummings
tedd wrote: At 4:08 PM -0400 8/11/09, Robert Cummings wrote: tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug

Re: [PHP] Calendar Problem

2009-08-12 Thread tedd
At 4:08 PM -0400 8/11/09, Robert Cummings wrote: I think Shawn McKenzie's is the best. It seems his would take at most 12 iterations. Cheers, Rob. Rob: For some reason I did not see/consider Shawn's solutions -- sorry Shawn. However, it appears that mine is still the fastest in most

Re: [PHP] Calendar Problem

2009-08-12 Thread Martin Scotta
On Wed, Aug 12, 2009 at 10:25 AM, Robert Cummings rob...@interjinn.comwrote: tedd wrote: At 4:08 PM -0400 8/11/09, Robert Cummings wrote: tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the

Re: [PHP] Calendar Problem

2009-08-12 Thread Stuart
2009/8/12 tedd tedd.sperl...@gmail.com: At 4:08 PM -0400 8/11/09, Robert Cummings wrote: I think Shawn McKenzie's is the best. It seems his would take at most 12 iterations. Cheers, Rob. Rob: For some reason I did not see/consider Shawn's solutions -- sorry Shawn. However, it appears

Re: [PHP] Calendar Problem

2009-08-12 Thread tedd
At 11:03 AM -0300 8/12/09, Martin Scotta wrote: Hi all This is my point of view. I try to stay the most legible and simple as possible. @tedd: can you benchmark this script too? usualy legibility performance ?php $fridays = array(); # I'll store the friday here $day = strtotime('-1 month',

Re: [PHP] Calendar Problem

2009-08-12 Thread Shawn McKenzie
tedd wrote: Your solution had 61 iterations (for loop) while mind had only 21, so mine's a bit faster. Here's the comparison: http://php1.net/b/fridays/ But I'll use your solution -- it's more elegant. Thanks for the code, tedd Actually, if you refresh your page you have

Re: [PHP] Calendar Problem

2009-08-12 Thread tedd
At 3:26 PM +0100 8/12/09, Stuart wrote: 2009/8/12 tedd tedd.sperl...@gmail.com: At 4:08 PM -0400 8/11/09, Robert Cummings wrote: I think Shawn McKenzie's is the best. It seems his would take at most 12 iterations. Cheers, Rob. Rob: For some reason I did not see/consider Shawn's

Re: [PHP] Calendar Problem

2009-08-12 Thread tedd
At 9:50 AM -0500 8/12/09, Shawn McKenzie wrote: tedd wrote: Your solution had 61 iterations (for loop) while mind had only 21, so mine's a bit faster. Here's the comparison: http://php1.net/b/fridays/ But I'll use your solution -- it's more elegant. Thanks for the code, tedd

Re: [PHP] Calendar Problem

2009-08-12 Thread Martin Scotta
On Wed, Aug 12, 2009 at 12:07 PM, tedd tedd.sperl...@gmail.com wrote: At 9:50 AM -0500 8/12/09, Shawn McKenzie wrote: tedd wrote: Your solution had 61 iterations (for loop) while mind had only 21, so mine's a bit faster. Here's the comparison: http://php1.net/b/fridays/ But I'll

[PHP] Calendar Problem

2009-08-11 Thread tedd
Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept 4. I'm curious, how would you guys solve this? Cheers, tedd

Re: [PHP] Calendar Problem

2009-08-11 Thread Robert Cummings
tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept 4. I'm curious, how would you guys solve this?

Re: [PHP] Calendar Problem

2009-08-11 Thread Jim Lucas
Robert Cummings wrote: tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept 4. I'm curious, how

Re: [PHP] Calendar Problem

2009-08-11 Thread Robert Cummings
Jim Lucas wrote: Robert Cummings wrote: tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept 4. I'm

Re: [PHP] Calendar Problem

2009-08-11 Thread Paul M Foster
On Tue, Aug 11, 2009 at 03:53:58PM -0400, tedd wrote: Hi gang: I want to show the dates for all Fridays +-30 days from a specific date. For example, given today's date (8/11/2009) the Fridays that fall +-30 days are July 17, July 24, July 31, Aug 7, Aug 14, Aug 21, Aug 28, and Sept 4.

Re: [PHP] Calendar

2009-06-21 Thread Ashley Sheridan
! If you have trouble finding it, give me a shout. Thanks Ash Ash et al: I like to roll and maintain my own. While it's not javascript, it works. http://webbytedd.com//tedd-php-calendar/ -- code is there And it's fairly easy to hook up to a database, such as seen here: http

Re: [PHP] Calendar

2009-06-20 Thread tedd
to roll and maintain my own. While it's not javascript, it works. http://webbytedd.com//tedd-php-calendar/ -- code is there And it's fairly easy to hook up to a database, such as seen here: http://php1.net/my-php-calendar/ The original code for the db version can be found in the php

Re: [PHP] Calendar

2009-06-19 Thread Tom Chubb
http://lmgtfy.com/?q=javascript+calendar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Calendar

2009-06-19 Thread Sudheer Satyanarayana
salmarayan wrote: Does Any body please have the code of A Java Script Calendar that works with a PHP Html Form.. if yes can you please send it as i have one but does not work that Efficiently. Thanks in advance This might help if you are looking for a date picker

Re: [PHP] Calendar

2009-06-19 Thread Ashley Sheridan
On Fri, 2009-06-19 at 15:30 +0530, Sudheer Satyanarayana wrote: salmarayan wrote: Does Any body please have the code of A Java Script Calendar that works with a PHP Html Form.. if yes can you please send it as i have one but does not work that Efficiently. Thanks in advance

[PHP] Calendar

2009-06-18 Thread salmarayan
Does Any body please have the code of A Java Script Calendar that works with a PHP Html Form.. if yes can you please send it as i have one but does not work that Efficiently. Thanks in advance -- View this message in context: http://www.nabble.com/Calendar-tp24099681p24099681.html Sent from

Re: [PHP] Calendar

2009-06-18 Thread Daniel Brown
On Thu, Jun 18, 2009 at 18:16, salmarayansalmara...@gmail.com wrote: Does Any body please have the code of A Java Script Calendar that works with a PHP Html  Form.. No. if yes can you please send it as i have one but does not work that Efficiently. No. -- /Daniel P. Brown

Re: [PHP] Calendar/Date

2009-03-18 Thread Robert Cummings
On Tue, 2009-03-17 at 20:52 -0700, Jason Todd Slack-Moehrle wrote: Hi All, Does anyone have code and/or advice for how to get get the current week (with a passed current day, say) and what then end date is at Saturday. So take today: Tuesday March 17, 2009 I want to get: Sunday

RE: [PHP] Calendar/Date

2009-03-18 Thread Bob McConnell
From: Paul M Foster On Tue, Mar 17, 2009 at 08:52:11PM -0700, Jason Todd Slack-Moehrle wrote: Hi All, Does anyone have code and/or advice for how to get get the current week (with a passed current day, say) and what then end date is at Saturday. So take today: Tuesday March 17, 2009 I

RE: [PHP] Calendar/Date

2009-03-18 Thread Robert Cummings
On Wed, 2009-03-18 at 11:46 -0400, Bob McConnell wrote: From: Paul M Foster On Tue, Mar 17, 2009 at 08:52:11PM -0700, Jason Todd Slack-Moehrle wrote: Hi All, Does anyone have code and/or advice for how to get get the current week (with a passed current day, say) and what then end

Re: [PHP] Calendar/Date

2009-03-18 Thread Paul M Foster
On Wed, Mar 18, 2009 at 11:46:31AM -0400, Bob McConnell wrote: From: Paul M Foster snip You also need to be aware that on 32 bit Unix and Linux systems the behavior of mktime() on dates after Jan 18, 2038 is undefined. The 32 bit counter overflows early on the 19th, so any value returned

RE: [PHP] Calendar/Date

2009-03-18 Thread Bob McConnell
From: Paul M Foster On Wed, Mar 18, 2009 at 11:46:31AM -0400, Bob McConnell wrote: You also need to be aware that on 32 bit Unix and Linux systems the behavior of mktime() on dates after Jan 18, 2038 is undefined. The 32 bit counter overflows early on the 19th, so any value returned is

Re: [PHP] Calendar/Date

2009-03-18 Thread Paul M Foster
On Wed, Mar 18, 2009 at 12:57:39PM -0400, Bob McConnell wrote: From: Paul M Foster On Wed, Mar 18, 2009 at 11:46:31AM -0400, Bob McConnell wrote: You also need to be aware that on 32 bit Unix and Linux systems the behavior of mktime() on dates after Jan 18, 2038 is undefined. The 32

Re: [PHP] Calendar/Date

2009-03-18 Thread Hans Åhlin
Weeks in a year is 52 or 53 Days in a year is 365 and if a leap year 366 If ( (365 (Days Of a year) * (Years From 1940)) + (Number of leap years since 1940, (Years From 1940 / 4) (if its a Leap year -1)) + ((Days From 01-01) + 1) % 7 = (0-6 where 0 = Monday) ) is less then 3 (Thursday) then

[PHP] Calendar/Date

2009-03-17 Thread Jason Todd Slack-Moehrle
Hi All, Does anyone have code and/or advice for how to get get the current week (with a passed current day, say) and what then end date is at Saturday. So take today: Tuesday March 17, 2009 I want to get: Sunday March 15, 2009 Monday March 16, 2009 Tuesday March 17, 2009 Wednesday March

Re: [PHP] Calendar/Date

2009-03-17 Thread Paul M Foster
On Tue, Mar 17, 2009 at 08:52:11PM -0700, Jason Todd Slack-Moehrle wrote: Hi All, Does anyone have code and/or advice for how to get get the current week (with a passed current day, say) and what then end date is at Saturday. So take today: Tuesday March 17, 2009 I want to get: Sunday

[PHP] Calendar Date Help

2008-05-28 Thread Mark Weaver
Hi all, I've put this off as long as possible, however I think I've reached an impasse. I've got an application that I've been writing. One of the modules for this app is an event calendar. I've got the calendar to the place where it displays the current month as well as previous and future

Re: [PHP] Calendar Date Help

2008-05-28 Thread Robert Cummings
On Wed, 2008-05-28 at 14:27 -0400, Mark Weaver wrote: Hi all, I've put this off as long as possible, however I think I've reached an impasse. I've got an application that I've been writing. One of the modules for this app is an event calendar. I've got the calendar to the place where

Re: [PHP] Calendar Date Help

2008-05-28 Thread Mark Weaver
Robert Cummings wrote: function getStamp($dateStr,$dayVal=1){ return date('U',mktime(0,0,0, $dateStr,$dayVal,date('Y'))); } ^ ^

Re: [PHP] Calendar

2007-12-06 Thread Richard Heyes
On Dec 5, 2007 6:09 AM, Richard Heyes [EMAIL PROTECTED] wrote: There is not much simple about a calendar, especially when you start dealing with recurring events. How far into the future your calendar allow events to recur will depend at least in part on how you intend to store them. For

Re: [PHP] Calendar

2007-12-05 Thread Andrew Ballard
On Dec 5, 2007 6:09 AM, Richard Heyes [EMAIL PROTECTED] wrote: There is not much simple about a calendar, especially when you start dealing with recurring events. How far into the future your calendar allow events to recur will depend at least in part on how you intend to store them. For

Re: [PHP] Calendar

2007-12-05 Thread Richard Heyes
There is not much simple about a calendar, especially when you start dealing with recurring events. How far into the future your calendar allow events to recur will depend at least in part on how you intend to store them. For instance, you can store them in a database where you create a separate

Re: [PHP] Calendar

2007-12-04 Thread Børge Holen
On Monday 03 December 2007 13:37:45 Emil Edeholt wrote: Hi, was this a mathematical question? Yes, someone on this list, can probably help you to do some finesse, but I like it mathematical and clean code I'm about to add some simple calendar functions to my application, and I'm thinking of

Re: [PHP] Calendar

2007-12-04 Thread Andrew Ballard
On Dec 3, 2007 7:37 AM, Emil Edeholt [EMAIL PROTECTED] wrote: Hi, I'm about to add some simple calendar functions to my application, and I'm thinking of how I should implement recurring events. Are there one standard way most people use that works well? I guess you have some kind of emitter

Re: [PHP] Calendar

2007-12-03 Thread Richard Heyes
I'm about to add some simple calendar functions to my application, and I'm thinking of how I should implement recurring events. Are there one standard way most people use that works well? I guess you have some kind of emitter event that creates the recurring events and a group id that holds

[PHP] Calendar

2007-12-03 Thread Emil Edeholt
Hi, I'm about to add some simple calendar functions to my application, and I'm thinking of how I should implement recurring events. Are there one standard way most people use that works well? I guess you have some kind of emitter event that creates the recurring events and a group id that

Re: [PHP] Calendar booking form in PHP/MySQL

2007-07-08 Thread Zareef Ahmed
Hi Murphy, I think till now you got the idea why you did't got replies for query. Please do a simple google search and you will find something. using sourceforge is also good idea. People are here to solve and discuss the programming problems of each others, NOT to do work for each other :)

[PHP] Calendar booking form in PHP/MySQL

2007-07-03 Thread Timothy Murphy
I'm looking for a PHP/MySQL calendar booking form, which I am sure must have been done a million times. This will show a calendar on the web mirroring a MySQL table. Each entry in the MySQL table will show two dates, Start and End. The dates between these should be shown in red on the calendar.

Re: [PHP] Calendar

2007-06-14 Thread Richard Lynch
On Wed, June 13, 2007 4:27 pm, Jim Lucas wrote: Richard Lynch wrote: On Wed, June 13, 2007 12:50 pm, Clint Tredway wrote: Oh, and here's the source I've been using for one web calendar for over a decade: http://uncommonground.com/events.phps It's got some stuff you don't need, and is a

[PHP] Calendar

2007-06-13 Thread Clint Tredway
Is there a decent free calendar? I just need to show a few events on a calendar. -- I am not a diabetic, I have diabetes my blog - http://grumpee.instantspot.com/blog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Calendar

2007-06-13 Thread Jim Moseby
Is there a decent free calendar? I just need to show a few events on a calendar. You could try your bank. They usually have free calendars, coffee mugs, pencils, etc. ;-) Seriously though, type 'php calendar' into google and see what happens. -- PHP General Mailing List (http

RE: [PHP] Calendar

2007-06-13 Thread Jim Moseby
, pencils, etc. ;-) Seriously though, type 'php calendar' into google and see what happens. 1) Please don't top-post. 2) Please include the list in your replies. 3) Please search dictionary.com for 'humor', and learn to recognize it. hint: A winkie ';-)' is a clue! You will likely get

Re: [PHP] Calendar

2007-06-13 Thread Richard Lynch
On Wed, June 13, 2007 12:50 pm, Clint Tredway wrote: Is there a decent free calendar? I just need to show a few events on a calendar. Having looked at a LOT of web calendars (for touring musicians) I can say with certainty that if you only have a FEW events, a month-like layout with boxes for

RE: [PHP] Calendar

2007-06-13 Thread Daevid Vincent
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 13, 2007 12:05 PM On Wed, June 13, 2007 12:50 pm, Clint Tredway wrote: Is there a decent free calendar? I just need to show a few events on a calendar. Having looked at a LOT of web

Re: [PHP] calendar Q

2006-08-12 Thread Richard Lynch
On Fri, August 11, 2006 12:23 am, William Stokes wrote: One more question. I have dates as a datetime in DB. Like 2006-08-11 08:20:00 and I'm playing only with date part in the calendar 2006-08-11. So how to compare this date to the datetime info in DB? Do I need to use DATE_FORMAT or

RE: [PHP] calendar Q

2006-08-11 Thread Jef Sullivan
- From: William Stokes [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 11:23 PM To: php-general@lists.php.net Subject: Re: [PHP] calendar Q Ok. Thanks. One more question. I have dates as a datetime in DB. Like 2006-08-11 08:20:00 and I'm playing only with date part in the calendar 2006-08

[PHP] calendar Q

2006-08-10 Thread William Stokes
Hello, I have a calendar script that displays a simple mini calendar view one month at a time. User can click any date and the calendar opens another page that displays that date's events. I would like to highlight to the mini calendar view dates that have an event in database. So what would

Re: [PHP] calendar Q

2006-08-10 Thread Brad Bonkoski
Really depends on how you display the calendar... if you go day by day building the table cells, then it should be easy enough because you should already have the date you are working with... so a query like select count(*) from events where date='date' and if count is 0 then display it

Re: [PHP] calendar Q

2006-08-10 Thread Richard Lynch
On Thu, August 10, 2006 12:14 pm, William Stokes wrote: I have a calendar script that displays a simple mini calendar view one month at a time. User can click any date and the calendar opens another page that displays that date's events. I would like to highlight to the mini calendar view

Re: [PHP] calendar Q

2006-08-10 Thread William Stokes
Ok. Thanks. One more question. I have dates as a datetime in DB. Like 2006-08-11 08:20:00 and I'm playing only with date part in the calendar 2006-08-11. So how to compare this date to the datetime info in DB? Do I need to use DATE_FORMAT or someting like this in the query? Thanks -Will

Re: [PHP] php calendar

2006-06-20 Thread Ahmed Saad
On 19/06/06, Ryan A [EMAIL PROTECTED] wrote: guess i am using special version of google... an iGoogle? ;) /ahmed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php calendar

2006-06-19 Thread weetat
Hi all , Any php calendar out there, search google , most of them are javascript calendar ? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php calendar

2006-06-19 Thread Ryan A
Strange... all I wrote was php calender on google and i got a whole bunch of results... guess i am using special version of google... -Ryan --- weetat [EMAIL PROTECTED] wrote: Hi all , Any php calendar out there, search google , most of them are javascript calendar ? Thanks

Re: [PHP] PHP Calendar script

2006-03-02 Thread tedd
I have been trolling through hotscripts.com and google all night and have tried out a couple of promising-looking PHP-based calendar scripts with no luck, so I'm turning to the collective wisdom of the list to help me out. I'm looking for a calendar script that I can plug into a web site that can

[PHP] PHP Calendar script

2006-03-01 Thread Robin Hastings
I have been trolling through hotscripts.com and google all night and have tried out a couple of promising-looking PHP-based calendar scripts with no luck, so I'm turning to the collective wisdom of the list to help me out. I'm looking for a calendar script that I can plug into a web site that can

Re: [PHP] Calendar program like on php.net

2005-08-01 Thread Burhan Khalid
On Aug 1, 2005, at 5:45 AM, Roger Thomas wrote: Quoting Jim Moseby [EMAIL PROTECTED]: I'd repost the link for you, but I've already deleted it. Sorry. Look back through the archives. JM I searched for 'Jim Moseby calendar' in the general and Dev mailing list but no go. Anty clue?

RE: [PHP] Calendar program like on php.net

2005-07-31 Thread Roger Thomas
Quoting Jim Moseby [EMAIL PROTECTED]: I'd repost the link for you, but I've already deleted it. Sorry. Look back through the archives. JM I searched for 'Jim Moseby calendar' in the general and Dev mailing list but no go. Anty clue? -- Roger

[PHP] Calendar program like on php.net

2005-07-29 Thread Reuben D. Budiardja
Hello, Anyone knows a simple calendar program that will let people to add event, and then after the event is approved by webmaster / moderator, the event would be added to the calendar ? Just like the calendar for Upcoming Events on www.php.net. What program is that ? I've looked at

RE: [PHP] Calendar program like on php.net

2005-07-29 Thread Jim Moseby
Hello, Anyone knows a simple calendar program that will let people to add event, and then after the event is approved by webmaster / moderator, the event would be added to the calendar ? Just like the calendar for Upcoming Events on www.php.net. What program is that ? I've

[PHP] Calendar program like on php.net

2005-07-28 Thread Reuben D. Budiardja
Hello, Anyone knows a simple calendar program that will let people to add event, and then after the event is approved by webmaster / moderator, the event would be added to the calendar ? Just like the calendar for Upcoming Events on www.php.net. What program is that ? I've looked at

Re: [PHP] Calendar program like on php.net

2005-07-28 Thread Rasmus Lerdorf
Reuben D. Budiardja wrote: Hello, Anyone knows a simple calendar program that will let people to add event, and then after the event is approved by webmaster / moderator, the event would be added to the calendar ? Just like the calendar for Upcoming Events on www.php.net. What program is

[PHP] Calendar Script

2004-12-29 Thread Joe Harman
Hello, I just finished writing a basic calendar script... I wanted to pass it out to everyone here... maybe someone could use it... or, even better optimize it.. .and maybe share that with me. ?php function Cal_Month(){// Get Today's Date$todays_date = getdate();// Determine what month

[PHP] Calendar Script

2004-12-29 Thread Joe Harman
Hello, I just finished writing a basic calendar script... I wanted to pass it out to everyone here... maybe someone could use it... or, even better optimize it.. .and maybe share that with me. ?php function Cal_Month(){// Get Today's Date$todays_date = getdate();// Determine what

[PHP] PHP Calendar/Planner Project

2004-08-10 Thread PHP Junkie
Ave, I'm working to create a sophisticated PHP Calendar/Planner application for my company's web server. I was wondering if there is a nice powerful calendar/planner application out there which could help me in guidance towards building my project. What I'm looking for is something sophisticated

[PHP] Calendar math .... how to count in week days....?

2004-05-06 Thread Anthony
I've run into a bit of a problem, that I know has been dealt with before, but I don't know how to deal with it. Very simple, I have an application that needs to do calendar math and do it specifically on business days. I need to be able to add and subtract a number of days to only Monday though

[PHP] calendar class

2004-02-24 Thread John Taylor-Johnston
Anyone recommend a good calendar class at phpclasses.org or elsewhere? Something I can install with ease and teach someone else to use and update using, oh say phpmyadmin? Thanks, John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Calendar.

2004-01-15 Thread Carles Xavier Munyoz Bald
Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? Greetings. --- Carles Xavier Munyoz Baldó [EMAIL PROTECTED] http://www.unlimitedmail.net/ --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP Calendar.

2004-01-15 Thread Nathan Taylor
] Sent: Thursday, January 15, 2004 9:27 AM Subject: [PHP] PHP Calendar. Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? Greetings. --- Carles Xavier Munyoz Baldó [EMAIL PROTECTED] http://www.unlimitedmail.net

[PHP] Re: PHP Calendar.

2004-01-15 Thread nabil
catch the out put of Linux exec('cal'); and for the year exec('cal 2004'); regards Carles Xavier Munyoz Baldó [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? Greetings.

[PHP] Re: PHP Calendar.

2004-01-15 Thread nabil
?php passthru('/usr/bin/cal') or die('error'); ? Carles Xavier Munyoz Baldó [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? Greetings. --- Carles Xavier Munyoz Baldó

Re: [PHP] PHP Calendar.

2004-01-15 Thread Lowell Allen
Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? You should write one. Here's mine, which I'm sure could be improved: HTH -- Lowell Allen function display_calendar($mon, $year) { // find current date and day of the month

Re: [PHP] PHP Calendar.

2004-01-15 Thread Brian V Bonini
On Thu, 2004-01-15 at 09:27, Carles Xavier Munyoz Baldó wrote: Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? I've seen many classes floating around that do this. Google should turn up something. -- BrianGnuPG -

Re: [PHP] PHP Calendar.

2004-01-15 Thread Carles Xavier Munyoz Bald
El Jueves, 15 de Enero de 2004 16:42, Brian V Bonini escribió: On Thu, 2004-01-15 at 09:27, Carles Xavier Munyoz Baldó wrote: Hi, Is there any PHP function or set of PHP files that allows me to print the current month in calendar format ? I've seen many classes floating around that do

Re: [PHP] PHP Calendar.

2004-01-15 Thread Jason Wong
On Thursday 15 January 2004 23:49, Carles Xavier Munyoz Baldó wrote: I've seen many classes floating around that do this. Google should turn up something. Yes, but Google can not return me the users experience whith this classes for this reason I ask here ;-) The only user experience that

RE: [PHP] Calendar

2003-11-13 Thread Boaz Yahav
Code from your browser http://toolbar.weberdev.com Share your thoughts : http://www.weberblog.com/submit.php?type=storytopic=PHP_Web_Logs -Original Message- From: Steve Marquez [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 8:50 PM To: PHP eMail List Subject: [PHP] Calendar

[PHP] Calendar

2003-11-12 Thread Steve Marquez
Hi, I am looking for a simple easy to edit php calendar program. Does anyone know where I can find one? Thanks for your help. -- Steve Marquez [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Calendar

2003-11-12 Thread Jay Blanchard
[snip] I am looking for a simple easy to edit php calendar program. Does anyone know where I can find one? [/snip] Several http://www.google.com/search?hl=enie=UTF-8oe=UTF-8q=PHP+calendar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Calendar

2003-11-12 Thread Pablo Gosse
On Wednesday, November 12, 2003 10:50 AM, Steve wrote: I am looking for a simple easy to edit php calendar program. Does anyone know where I can find one? Pear is always a good place to start: http://pear.php.net/package/Calendar Cheers, Pablo -- PHP General Mailing List (http://www.php.net

RE: [PHP] Calendar

2003-11-12 Thread Dave G
Steve, I'm a complete beginner, and I just finished building my own calendar. I tried using some pre-built ones, like this one: http://www.cascade.org.uk/software/php/calendar/index.php ... but I found that trying to figure out how to use their features was a whole

[PHP] Calendar Script

2003-10-29 Thread Vijay Killu
Dear PHP, Where can I find the Calendar script that has been used on the PHP.net site. I believe I can use it on my website since it is open source :-) Thanks Regards, ___ PHPLover * : [EMAIL PROTECTED] Göd döësn't pläy dícë. - Älbërt Ëínstëín -- PHP

Re: [PHP] Calendar Script

2003-10-29 Thread Leif K-Brooks
Vijay Killu wrote: Where can I find the Calendar script that has been used on the PHP.net site. I believe I can use it on my website since it is open source :-) I don't seeany calendar, but you should be able to use the show source link whereever it is. -- The above message is encrypted with

Re: [PHP] Calendar Script

2003-10-29 Thread Evan Nemerson
On Wednesday 29 October 2003 12:01 am, Vijay Killu wrote: Dear PHP, Where can I find the Calendar script that has been used on the PHP.net site. I believe I can use it on my website since it is open source :-) From php.net. There is a show source link on the bottom of every page, plus the

Re: [PHP] Calendar Script

2003-10-29 Thread David T-G
Vijay -- ...and then Vijay Killu said... % % Where can I find the Calendar script that has been used on the PHP.net site. % I believe I can use it on my website since it is open source :-) I don't know about (or where to find) that one, but I've been fairly happy with WebCalender [sic] from

[PHP] Calendar Tool

2003-10-28 Thread Matt Palermo
Hey everyone. I am the creater of a PHP script called TotalCalendar (http://sweetphp.com/TotalCalendar/) and I am looking for a little advice and suggestions about making a tool for it. I want to build an application that users can download and install on their local machines which connects to a

Re: [PHP] Calendar Tool

2003-10-28 Thread Payne
Matt Palermo wrote: Hey everyone. I am the creater of a PHP script called TotalCalendar (http://sweetphp.com/TotalCalendar/) and I am looking for a little advice and suggestions about making a tool for it. I want to build an application that users can download and install on their local

  1   2   >