$blah = 'wwwwwww';
echo strpos($blah, 'w');
print_r(strpos($blah, 'w'));
die(strpos($blah, 'w'));
The following in PHP 4.3.2 produces this:
I am baffled as to why die() produces false results (which was my earlier problem with strpos()) and yet echo and others produce just fine.
Thanx
Phil