HTML To PDF with HTML2FPDF
This code in PHP to produce HTML To PDF. With HTML To PDF you will be easier to manage your code.
You can download the source code here :
<?
function Input($nama,$asal,$memo,$link)
{
$HTML =
”
<HTML>
<BODY>
<TABLE BORDER=\”1\” WIDHT=\”700\”>
<TR><TD BGCOLOR=\”#00FF00\”><B>Name</B></TD><TD WIDTH=\”240\”>$nama</TD></TR>
<TR><TD BGCOLOR=\”#FF0000\”><B>From</B></TD><TD>$asal</TD></TR>
<TR><TD BGCOLOR=\”#123456\”><B>Web</B></TD><TD><A href=\”$link\”><I><U>$link</U></I></A></TD></TR>
<TR><TD VALIGN=\”TOP\” BGCOLOR=\”#0000FF\”><B>About</B></TD><TD>$memo</TD></TR>
<TR><TD BGCOLOR=\”#654321\”><B>Picture</B></TD><TD><IMG src=\”test.jpg\”></TD></TR>
</TABLE>
</BODY>
</HTML>
“;
return $HTML;
}
$HTML = Input(”gunungpring”,”indonesia”,”Web Site<BR>about<BR>PHP Programming and PHP Tips Trik For Beginner”,”http://www.gunungpring.com“);
require_once(”html2fpdf\html2fpdf.php”);
$myPDF = new HTML2FPDF();
$myPDF->HTML2FPDF(”P”,”mm”,”A4″);
$myPDF->AddPage();
$myPDF->WriteHTML($HTML);
$myPDF->Output();
?>
You can download the source code here :
Post Info
This entry was posted on Tuesday, April 24th, 2007 and is filed under PHP.You can follow any responses to this entry through the Comments Feed. You can Leave A Comment, or A Trackback.
Previous Post: Get Yahoo Address Book »
Next Post: Create Your Own Toolbar Like Google and Yahoo Toolbar »
Latest Posts
- Hack Handphone HOWTO (15)
- MySpace Proxy (3)
- Detect Invisible User In Yahoo Messenger (3)
- See SMS and Control Another Ponsel (2)
- Make your Symbian Ponsel as Remote Control. (2)
- Wordpress Plugin You must have (2)
- Setting Gmail POP3 In Nokia N73 (2)
- FLV Player for Nokia Series 60 3rd Edition (2)
- Disable Autorun CD (2)
- Make A Promotion Website For Product (2)
Read More
Related Reading:Previous Post: Get Yahoo Address Book »
Next Post: Create Your Own Toolbar Like Google and Yahoo Toolbar »
This some posting which are related to this article : just read related article







