Hi all,
I'm trying to embed a small javascript within the page that creates a PDF, though...
1 when i put the code before ob_start(); it returns an error msg "headers already send"
2 when i put the code after ob_start(); it returns an error msg like "<SCRIPT>" is not defined
What i intend to do is redirect the opener.window with this javascript:
<script type="text/javascript">
window.opener.location='somepage.php';
</script>
any suggestions?