Ok, to make sure I understand this correctly, if I wanted to include three paths on a windows machine I would use:
include_path=".;C:\php\includes;C:\wamp\;C:\files";
and on UNIX I would use:
include_path=".:/php/includes:/wamp:/files";
and each of these statements would include not only php\includes, wamp, and files folders, but also the folder the php.ini is located in, because of the "."?