Re: [PHP] strcmp()?

2011-05-23 Thread Alexey Bovanenko
I checked on php 5.2.4-2 (ubuntu5.12). It returns 1,-1,1 On Mon, May 23, 2011 at 4:00 PM, tedd wrote: > At 8:13 AM + 5/23/11, Ford, Mike wrote: > >> > -Original Message- >> > From: tedd [mailto:tedd.sperl...@gmail.com] >> > >On Sat, 21 May 2011 09:26:02 -0400, tedd wrote: >> > >>

Re: [PHP] Mail Function Problem

2010-04-12 Thread Alexey Bovanenko
Hi! You have the following php.ini params: SMTP = smtp.live.com smtp_port = 587 live.com not support relay and it requires authentication. On Mon, Apr 12, 2010 at 6:33 AM, Alice Wei wrote: > > Hi, > > I have an issue here where I see no PHP errors on my mail function usage, > and yet I am not

Re: [PHP] MySQL query not working!

2010-03-31 Thread Alexey Bovanenko
Hi! To view error: you must use mysql_query(). @ before mysql - error supression. next you can use the following: $result=.. if($result){ if(mysql_num_rows($result)){ /* you have record in table */ }else{ /* you haven't */ On Wed, Mar 31, 2010 at 4:11 PM, Andre Polykanine wrote: > Hel