|
|
|
สอบถามปัญหาเกี่ยวกับ PHP หน่อยครับ ข้อความใน Textbox ไม่ออกเครื่องปริ้น |
|
|
|
|
|
|
|
ไม่ง่ายเลย
ลองตามนี้
Sol 1
Code (JavaScript)
<input type="submit" value="Print" onclick="printIframe(report);"/>
<script>
function printIframe(objFrame) {
objFrame.focus();
objFrame.print();
bjFrame.save();
}
</script>
<iframe name="report" id="report" src="report.php"></iframe>
Vainglory07
Sol 2
Code (PHP)
$page = "http://your_domain_name/filename.php";
print_page($page);
function print_page($page)
{
$printer = "PrinterName");
if($ph = printer_open($printer))
{
$content = get_file_contents($page);
printer_set_option($ph, PRINTER_MODE, "RAW");
printer_write($ph, $content);
printer_close($ph);
}
}
Satish Sharma
|
|
|
|
|
Date :
2020-08-05 15:31:30 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inspect ดู css ของ input นั้นครับ
|
|
|
|
|
Date :
2020-08-05 15:32:44 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|