> Is there anyway that I can open a new browser window in php, like you > are > able to do in JavaScript (window.open()). I have had a look around and > can't > find any information on how this can be done.
PHP can't control browser objects like windows. You have to use JavaScript for stuff like that, or you could use the frames properties of HTML like this: <a href="./path/to/file" target="_blank">Click Here</a> Essentially, you're having the new file open up in a new frame, but instead of the frame being defined in the current window, it's in a new window. Not really JavaScript, but same effect. Erik ---- Erik Price Web Developer Temp Media Lab, H.H. Brown [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php