php - Moodle download a created PDF -


i create pdf in moodle using following code

$pdf = new pdf;  $pdf->addpage();  $pdf->write(1, "test");  $pdf->output(); 

how make download in browser instead of opening in browser?

// force browser download output $pdf->output('filename.pdf','d'); 

Comments

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -