The command looks like this:
PHP Code:
chdir('/home/www/public_html/forum');
It's the server path to the directory.
When you insert it, the code below will assume it is in that directory.
So normally for an image located in your review directory you may currently use img src="../../images/file.jpg" After adding chdir('/home/www/public_html'); to the php file, you will only need "images/file.jpg" because the file assumes it's pulling links from /home/www/public_html
I'm sure others could explain it better.