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…
What are the basic difference between get and post method in php? In form submission with GET method, browser constructs a URL by taking the value of the action attribute appending a? to it, then appending the form data set (encoded using the application/x-www-form-urlencoded). The browser then processes this URL as if following a…
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…
Prevent Image Caching & Prevent Browser Caching The Browser(s) saves a copy of a file (like a logo image) and uses this cached (saved) copy on each page that needs the same, but some time you will not need of this i.e you want that every image and CSS and java script should be…
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…