Web Development Tutorials
//

Category: Programming

Programming

Use PHP PDOStatement bindParam

Bind a parameter to a specified variable name using the PDO function PDOStatement bindParam() in PHP. Prepare the statement using a named (:name) or…

March 13, 2023

Programming

Create PDFs In PHP With Header/Footer

Add header with logo and footer in creating PDF files in PHP using FPDF Library Class. Position the data to your desired area, choose…

March 12, 2023

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