[PHP] Re: searching an array for words starting with 'p'

2002-07-30 Thread Evgeny Chuykov
See preg_grep() function in the manual. a Hi there, a I am wondering how to search an array for words starting with a certain a character. a E.G: a $word = array('alpha', 'beta', 'php'); a I would like to check if there is a word in the array starting with p a Is there alrready a function

[PHP] Re[2]: File Browser like Win Explorer in php

2002-07-29 Thread Evgeny Chuykov
Look at the HTML_TreeMenu http://pear.php.net/package-info.php?pacid=77. I am wondering if anyone has created or know where I can get a code for browsing files and directory in using php in linux. The one I am looking for is file browsing capability that is similar to Window Explorer, meaning

Re[2]: [PHP] How to defeat winroute [proxy]?

2002-07-26 Thread Evgeny Chuykov
BL On Fri, 26 Jul 2002 09:48:18 +0900, Evgeny Chuykov wrote: Hi. I've tried this: header(Expires: Mon, 26 Jul 1997 05:00:00 GMT); header(Cache-control: private); header(Cache-control: no-cache); header(Cache-control: no-store); header(Cache-control: must-revalidate); header(Cache-control

[PHP] How to defeat winroute [proxy]?

2002-07-25 Thread Evgeny Chuykov
Hi. I've tried this: header(Expires: Mon, 26 Jul 1997 05:00:00 GMT); header(Cache-control: private); header(Cache-control: no-cache); header(Cache-control: no-store); header(Cache-control: must-revalidate); header(Cache-control: proxy-revalidate); header(Cache-control: max-age=0);

Re[2]: [PHP] Re: Cookies - good or bad???

2002-07-18 Thread Evgeny Chuykov
Justin French wrote: JF As has been said on this list MANY times, just have a look at the big sites JF like amazon.com -- no cookies, no javascript, no reliance on client-side for JF anything. Take care of it all server-side, where you have a controlled JF environment. And what about