Re: [PHP] PHP Bug ?

2004-07-03 Thread Dennis Freise
On Sat, 3 Jul 2004 11:56:52 +0200 Dennis Freise <[EMAIL PROTECTED]> wrote: Errr... these need to be assoc as well: > $country_symbol = array( 'AU' => 'some_value' ); > $country_list = array( 'some_value', 'some_other_value' ); $country_lis

Re: [PHP] PHP Bug ?

2004-07-03 Thread Dennis Freise
arrays. 2 _different_ arrays. $country_symbol = array( 'AU' => 'some_value' ); $country_list = array( 'some_value', 'some_other_value' ); For your piece of code it would need to be: $country_list = array( 'some_value' => array( 'AU'

Re: [PHP] Fw:

2004-06-15 Thread Dennis Freise
w/html/whatnew/a.php on line 3 Maybe that's because the standard MySQL port is 3306 - not 3308 ;-) -- Dennis Freise <[EMAIL PROTECTED]> GnuPG key: 2DE8 CCEF 6E20 11D4 3B27 21EC B0BA 1749 D2C8 38ED Available at: http://www.final-frontier.ath.cx/?key-plain pgphUMtxR3elO.pgp Description: PGP signature

Re: [PHP] Function Date

2004-06-14 Thread Dennis Freise
s?. How about strtoupper( date("j M Y") ); ? -- Dennis Freise <[EMAIL PROTECTED]> GnuPG key: 2DE8 CCEF 6E20 11D4 3B27 21EC B0BA 1749 D2C8 38ED Available at: http://www.final-frontier.ath.cx/?key-plain pgpYFwoIAIk4R.pgp Description: PGP signature

Re: [PHP] Scheduling a PHP script

2004-06-14 Thread Dennis Freise
background, "arg2=b" in the background, and "arg3=c" in the foreground ;) The correct command is: /usr/bin/curl -u username:password "http://www.domain.com/script.php?arg1=a&arg2=b&arg3=c"; This also applies to wget, lynx and all other commandline tools you can i