I used to search the same way until someone on this list mentioned using
a fulltext index in mysql. Doing this almost eliminated all my headaches
with searching.
Easiest way to create a fulltext index is to use phpMyAdmin. Once you've
created the fulltext index on `title`,`description`,`price`,`
Marek Kilimajer wrote:
> Christopher J. Bottaro wrote:
>> Jochem Maas wrote:
>>
>>
>>>Christopher J. Bottaro wrote:
>>>
Maybe I'm using "reentrant" incorrectly, but here is what I mean...
class Test {
function __get($nm) {
if ($nm == 'x')
return $this
Christopher J. Bottaro wrote:
Jochem Maas wrote:
Christopher J. Bottaro wrote:
Maybe I'm using "reentrant" incorrectly, but here is what I mean...
class Test {
function __get($nm) {
if ($nm == 'x')
return $this->func();
elseif ($nm == 'y')
return 'y';
else
Hi, First post here.
I have a large application form (financial) which I have working fine but I
need to be able to have it either work as a single application or a joint
one. If joint it needs to display two forms for the user to fill in. I am
just wondering how I can do this without having t
Jochem Maas wrote:
> Christopher J. Bottaro wrote:
>> Maybe I'm using "reentrant" incorrectly, but here is what I mean...
>>
>> class Test {
>>function __get($nm) {
>> if ($nm == 'x')
>> return $this->func();
>> elseif ($nm == 'y')
>> return 'y';
>> elsei
Christopher J. Bottaro wrote:
Maybe I'm using "reentrant" incorrectly, but here is what I mean...
class Test {
function __get($nm) {
if ($nm == 'x')
return $this->func();
elseif ($nm == 'y')
return 'y';
elseif ($nm == 'xx')
return 'x';
}
fu
I'd recommand you to use the HTML_TEMPLATE_IT. It's a PEAR class for
templating; I've personaly worked on it for building skinnable applications
in which users and admins can change the look of the pages. Bottom line,
it's a PEAR library/extension so no hastle since most of the hosts include
it
7 matches
Mail list logo