Welcome to the home of phpDocumentor. phpDocumentor, sometimes referred to as phpdoc or phpdocu, is the current standard auto-documentation tool for the php language. Similar to Javadoc, and written in php, phpDocumentor can be used from the command line or a web interface to create professional documentation from php source code. phpDocumentor has support for …
Tag Archives: PHP
phpdocx
PHPDOCX is offered as a free PHP library that allows you to create dynamically basic Microsoft Office Word documents (.docx) or as an enhanced Pro version that includes extra functionality and allows for more sophisticated formatting.
TCPDF is a FLOSS PHP class for generating PDF documents.
Started in 2002, TCPDF is now one of the world’s most active Open Source projects, used daily by millions of users and included in thousands of CMSand Web applications. Check the examples…
How can I execute PHP code on my existing myfile.html page?
When a web page is accessed, the server checks the extension to know how to handle the page. Generally speaking if it sees a .htm or .html file, it sends it right to the browser because it doesn’t have anything to process on the server. If it sees a .php extension (or .shtml, or .asp, …
Continue reading “How can I execute PHP code on my existing myfile.html page?”
php: howto control page caching header
Controlling how web pages are cached is basically done using 2 kind of headers: Expires and Cache-Control
MySQL if exist update else insert
I whant to write single sql for this: if not exists (table colum value=something) insert new row else update table colum value i know that MSSQL has this method, but how to do this in mysql?