[PHP-DB] Berkeley DB Btree

2003-11-29 Thread Ivan Fomichev
Greetings, All! I wonder if it is possible to profit embedded in Berkeley DB Btree access method by PHP. I am interested in some kind of documentation on this topic or at least piece of code, which connects to Btree and customizes comparision function. Any hints will be apprec

Re: [PHP-DB] eregi sentence

2003-11-30 Thread Ivan Fomichev
Hello Nikos, Sunday, November 30, 2003, 10:29:19 AM, you wrote: NG> Can somebody tell me what is wrong with the following? NG> $body=eregi_replace("]*)>(.+)", " target=\"_blank\" class=\"down_txt\">\\3", $body); 1) /.+/ is too greedy. You should use something like /[^"]+/ or /.+?/ instead (se