how do i open a web page from a php script
cant do it with php, only with a client-side language like this :
<script language="JavaScript"> window.open("http://your-page.com") </script>
or you can use that command too :
window.location.href="http://your-page.com";
hope that'll help!
Jacinthe