I'm not so experienced programmers ... only in C # not php and html
I want to create a url link to a pdf file, I'll do a certificate when they have passed a quiz and this quiz, I would create a url link...
this is in php or html.
I'm not so experienced programmers ... only in C # not php and html
I want to create a url link to a pdf file, I'll do a certificate when they have passed a quiz and this quiz, I would create a url link...
this is in php or html.
Have a look at PrinceXML.
It's definitely the best HTML/CSS to PDF converter out there, although it's not free (But hey, your programming is not free either, so if it saves you 10 hours of work, you're home free.)
Oh yeah, did I mention that this is the first (and probably only) HTML2PDF solution that does full ACID2!?
There are 2 cases:
If you want to show the result after the quiz as HTML, there's no need to mention about pdf.
But if you want to show the result as PDF and let the quiz taker download this PDF result,
you will need to create a PDF file by your own code, kinda PDF library;
for PHP, you may use this standard PDF library:
http://php.net/manual/en/book.pdf.php
Example for using PDF library of PHP:
http://www.php.net/manual/en/pdf.examples-basic.php
After creating the PDF file, you can easily create an URL (a string starts with http) to that PDF file, depends on your domain, and the directory route to the just created PDF file.
Hope this may help