How to generate pdf file in php?
Answer / chinchu
We can create pdf files in php by using PDF libraries such
as TCPDF,FPDF etc
You can find the TCPDF library here http://www.tcpdf.org/
and FPDF library here http://www.fpdf.org/
| Is This Answer Correct ? | 14 Yes | 0 No |
What new features php7 has in store for us?
Explain how to run the interactive php shell from the command line interface?
What is the function in PHP do not return a timestamp?
what is this error "Call to unsupported or undefined function mysql_connect();" and when you will get this?
m new to xampp i want to configure file server in xampp... is it possible ??? if so help me....
Can we run php on tomcat server?
Explain which cryptographic extension provide generation and verification of digital signatures?
Which is faster for or foreach?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.
What are default session time and path?
Write a function that takes "depth" as argument and return sum of node's data of that depth. For instance, (0) depth 0 / \ (10) (20) depth 1 / \ (40) (50) depth2 If I pass get_sum_by_depth(2) , it would return 90 (i.e. 40 + 50 )
How do you define a constant in php?