Re: [PHP] PHP 5 with Apache 2.0

2005-02-15 Thread The Disguised Jedi
go for it dudeit's ready for you...the question is... Are you ready for it?? On Tue, 15 Feb 2005 12:29:04 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > Neal Schilling wrote: > > I know this question probably gets asked a lot, but I'm setting up a Web > > Server shortly and am de

Re: [PHP] [NEWBIE] Trying to combine array into one string [SOLVED]

2005-02-15 Thread Dave
Matt, Warren, Gareth, Chris, Jochem, Ospinto, Richard, Thank you all for your helpful suggestions. implode() is the command I needed, and I've applied syntax similar to Matt's suggestion. My problem is now solved. Your responses are all much appreciated. -- Dave Gutteridge [EMAIL PROTECT

RE: [PHP] PHP book recommendations>

2005-02-15 Thread yangshiqi
I enjoy the "Core PHP Programming, Third Edition by Leon Atkinson" very much. Best regards, Yang Shiqi -Original Message- From: Joe Harman [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 3:20 AM To: php-general@lists.php.net Subject: Re: [PHP] PHP book recommendations

Re: [PHP] isset

2005-02-15 Thread Burhan Khalid
D_C wrote: I often use this type of construct $cmd = $_POST['cmd']; if ($cmd == null) { // do default but this throws a notice if the ['cmd'] index is not defined. ugly. using if (isset($_POST['cmd'] ) { $cmd = $_POST['cmd']; } seems lengthy. is there a way around this? http://www.php.net/a

Re: [PHP] issue with accents and mysql

2005-02-15 Thread Burhan Khalid
mario wrote: Hello, please help me on the following issue. please reply to [EMAIL PROTECTED] too. (I asked for help on the php-db ml, but nobody replied) I have hacked the following function: function accents($text) { global $export; $search = array ( 'à', 'è', 'ì', 'ò' , 'ù'); $replace =

Re: [PHP] other mhash hashes

2005-02-15 Thread Burhan Khalid
David Norman wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I thought some other people would be interested in the other hashes that you can do with mhash that aren't on the php.net docs after the recent news that SHA-1 might be weaker than previously thought: http://www.schneier.com/blog/arc

<    1   2