hello,
i need help on printing my page. I want to know how to print the page in full. The printer cut half the page and doesn't print the half or part that beyond the printing page width.
How to make the printer print the other or cut part?
I already made some adjustment on the printer to reduce the size of my page even up to 50% but to no avail.
Printing the cut part on the other pages is fine with me as long its printed.
Does anybody know to how it is done?
i call my page to print by clicking on button..
<input type='button' name='mypage' value='Print' onclick="JavaScript:newWindow=window.open('mypageprint.php?session=<?echo$session?>&usrid=<?echo$usrid?>,'Block','width=800,height=400,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1');newWindow.focus()">
and on mypageprint.php i put this code on the body tag.
<body onload='window.print();window.close();' bgcolor='<?echo$f_workviewbg?>'>
tks.