Programming
Tutorials
-
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 perform […]
-
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 the […]
-
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 established, […]
-
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 function […]
-
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. Requirements: […]
-
Create An Image With PHP
With the help of the GD library, it is possible to create a JPG, GIF, PNG, and other image formats (Formats supported by GD) in […]