PHP Tutorials

Whether just getting started or an expert, this vast collection of PHP tutorials will help you create dynamic content for powerful web-based applications in no time.

Results via Envato Market

By Luca Perugini on October 26, 2000 PHP tied to PDFLib is perhaps the best platform for Web Publishing. A couple of typical uses: brochure on demand e-nvoice: invoice for e-commerce With this Tutorial you’ll learn how to use the PDF extension in PHP4 to create PDF documents. We also…

By Luca Perugini on October 26, 2000 Installing PDFLib and PHP with PDF Support Requirements PHP 4.02+ from http://php.net PDFLib 3.0.1 from http://www.pdflib.com This is a little recipe to get PDFlib 3.0.1 working with PHP4: download PHP directly from http://php.net Uwe Steinman patched ext/pdf/pdf.c to support PDFLib v 3.0.1 download…

By Luca Perugini on October 26, 2000 Distilling PDF document Now we’re ready to generate PDF on the fly! In this little example we’ll generate brochure on demand for FlyStore Inc., taking data from a catalogue database. Prepare Database Test I am going to assume a *little* experience in databases….

By Luca Perugini on October 26, 2000 Generating PDF File In order to generate PDF document, we need to do these steps: Open a PDF stream and associate a handle with it:$pdf = PDF_open(); (Optional) Set document information like Author, Title, Subject, etc Start a new page (a PDF file…