php-windows Digest 19 Apr 2004 20:52:28 -0000 Issue 2216

Topics (messages 23485 through 23487):

Re: Format integer to month name
        23485 by: Dr. Robert Probst

problems getting the GET method to work properly
        23486 by: Leonardo Javier Belén
        23487 by: Justin Patrin

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
i would use the following :)

$monthnames = array ("","January", "February",.....,"December");
$aktmonth = 5;  // MAY
echo $monthnames[$aktmonth];

Robert




> -----Ursprüngliche Nachricht-----
> Von: Nadim Attari [mailto:[EMAIL PROTECTED] 
> Gesendet: Montag, 19. April 2004 10:53
> An: [EMAIL PROTECTED]
> Betreff: [PHP-WIN] Re: Format integer to month name
> 
> 
> > Actually, I want to know is there any function of 
> converting integer 
> > from 1 - 12 to Month Name from January to December? i had tried 
> > "JDMonthName( )" & "date( )", but can't get the format i want.
> >
> > I am beginner and using window platform.
> >
> > Thank you very much.
> 
http://www.php.net/date
http://www.php.net/mktime

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
I am using a winnt server 4.0 box with apache 1.3x and php 4.2.x to serve some 
intranet pages. The strange thing is that i am not able to use the get method 
properly. Has anyone an idea of what am i doing wrong? at least I need the session id 
to be populated by gets.

A last thing, I realized that this only happens when I use a web form, because using 
an anchor is perfectly working... 
thanks

--- End Message ---
--- Begin Message --- Leonardo Javier BeléN wrote:

I am using a winnt server 4.0 box with apache 1.3x and php 4.2.x to serve some intranet pages. The strange thing is that i am not able to use the get method properly. Has anyone an idea of what am i doing wrong? at least I need the session id to be populated by gets.

A last thing, I realized that this only happens when I use a web form, because using an anchor is perfectly working... thanks

Are you setting method="get" in the form? If it's set to post, of course you won't get them via get. Also, if it's not set it *could* be defaulting to post, although that's very unlikely.


Are you using globals or $_GET? Does using $_REQUEST work?

--
paperCrane <Justin Patrin>

--- End Message ---

Reply via email to