[PHP-WIN] custom errors handling class

2005-03-18 Thread Mihai Frisan
hi, I need some help, this is my problem: I use a custom errors handling class, which set one of its methods as the php errors handler. All works well when I use this class in a file with only procedural code (all errors are caught by the custom errors handling class), but if I instantiate anot

[PHP-WIN] Re:[PHP-WIN] help in understanding string / integer concatenation

2005-01-11 Thread Mihai Frisan
that's what you need: $str = 'hello "' . ($i+1) . '"'; you must put $i+i in brachets in order to evaluate first the expresion $i+1 and then concatenates it to the string best regards mihai i'm not young enough to know everything Hello all; I am a new PHP user. (But not new at programing.)