Web Development Tutorials
//

Category: Programming

Programming

Create PDFs in PHP using FPDF Library

Use Free PDF (FPDF) PHP class to easily generate pure PHP PDF files. Options include displaying the generated PDF file on the browser, or…

March 12, 2023

Programming

Insert MySQL DB Data With PHP PDO

Prepare records to be inserted to a MySQL database using the PDO PDO prepare() function in PHP, then use the PDOStatement execute() function to…

March 11, 2023

Programming

Update MySQL DB Data With PHP PDO

Update MySQL records with the PDO prepare() function, it already has an auto-escaping feature for any given parameter values. Bind the user-input value to…

March 11, 2023

Programming

Delete MySQL DB Data With PHP PDO

It’s easy to delete a MySQL record using PDO in PHP, just make sure a PDO connection to the MySQL database has been successfully…

March 10, 2023

Programming

Select MySQL DB Data With PHP PDO

One simple way of selecting records from a MySQL database using PHP Data Objects (PDO) is with the use of the function query(). This…

March 9, 2023

Programming

Change The Excerpt Limit In WordPress

Modify the default (55) maximum number of words in WordPress post excerpt. Set the length according to your needs using the add_filter filter hook.…

March 4, 2023