Re: Re[2]: [PHP] if statement

2002-07-08 Thread Philip Olson
> Thanks the array worked just perfect. Where do you find stuff like > this I looked all over the manual and could not find anything that > told me how to do this. A good way to learn this sorta thing is with experience. The more you learn and understand, the easier it is to write your own usef

RE: Re[2]: [PHP] if statement

2002-07-08 Thread Martin Towell
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 2:21 PM To: php-general Subject: Re[2]: [PHP] if statement Hello Martin, Thanks the array worked just perfect. Where do you find stuff like this I looked all over the manual and could not find anything that told me how

Re[2]: [PHP] if statement

2002-07-08 Thread rdkurth
Hello Martin, Thanks the array worked just perfect. Where do you find stuff like this I looked all over the manual and could not find anything that told me how to do this. Monday, July 08, 2002, 9:01:44 PM, you wrote: MT> You can do this: MT> if ($type == "test1" || $type == "test2" || $type =

Re[2]: [PHP] If Statement with more than one conclusion

2002-01-02 Thread rdkurth
Hello Martin, Thanks that work perfect Wednesday, January 02, 2002, 9:31:36 PM, you wrote: MT> something like: MT> If(in_array($ext, array("com", "net", "org", "info")){ MT> //Then do this MT> } MT> If(in_array($ext, "com.uk", "me.uk", "org.uk")){ MT> //Then do this MT> } MT> maybe?? MT>