Guest User

Untitled

a guest
Aug 25th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?php
  2. private function message(){
  3. return "<table id="print-area"><tr><td>example</td></tr></table>"}
  4. ?>
  5.  
  6. <?php
  7. public function PrintReceipt($content) {
  8.  
  9. echo"<!DOCTYPE html><script type='application/javascript'>
  10. window.onload=function(){
  11. var myWindow = window.open('', 'MsgWindow', 'width=200,height=100');
  12. myWindow.document.write('" . $content . "');
  13. myWindow.frames['print_frame'].document.title = document.title;
  14. myWindow.document.getElementById('print-area').contentWindow.print();
  15. }
  16. </script>";
  17. }
  18. ?>
  19.  
  20. public function PrintReceipt($content) {
  21.  
  22. echo"<!DOCTYPE html><script type='application/javascript'>
  23. window.onload=function(){
  24. var myWindow = window.open('', 'MsgWindow', 'width=200,height=100');
  25. myWindow.document.write('" . $content . "');
  26. myWindow.print();
  27. myWindow.close();
  28. }
  29. </script>";
  30. }
Add Comment
Please, Sign In to add comment