The HTML marquee tag provides a way for browsers to creates a scrolling effect (can be tailored to include any HTML content) vertically or horizontally without having to resort to JavaScript techniques.     The marquee is non-standard HTML tag but you can enjoy (or possibly suffers from) good browser support.   You can change…

Convert HTML to PDF using PHP code (HTML2FPDF Class library) In web development, you often need to create PDF (Portable Document Format) to view or download/ print a document.   Here is a simple class that will provide you a simple way to do create PDF.HTML2FPDF Class library consist of three classes namely PDF, HTML2FPDF… (24 comments)

HTML form enctype Attribute The HTML form enctype attribute’s main purpose is to indicate how the form data/values should be encoded prior to it being sent to the location defined in the action attribute on the form.   for e.g. <form action=”scriptarticle/post_page.php” method=”post” enctype=”multipart/form-data”>   By default, form data is encoded to “application/x-www-form-urlencoded” so that…

The HTML DOM views an HTML document as a tree-structure. The tree structure that is defined known as a node-tree.All nodes can be accessed through the tree. Their contents can be modified or deleted, and new elements can be created.   Programming InterfaceIn the DOM, HTML documents consist of a set of node objects. The…