MyISAM locking explained.
The other day, some of our users reported that saving data had become extremely slow. In some cases, forms were taking up to 15 seconds to submit. The post MyISAM locking explained. appeared first on...
View ArticleCheck if a MySQL row exists using PHP’s PDO object.
In this tutorial, I will be showing you how to check if a row exists in MySQL. To do this, I will be using PHP's popular PDO object. The post Check if a MySQL row exists using PHP’s PDO object....
View ArticlePDO: Count number of rows in a MySQL table.
This is a tutorial on how to count the number of rows in a MySQL table using PHP's PDO object. The post PDO: Count number of rows in a MySQL table. appeared first on This Interests Me.
View ArticlePHP: Get a list of all MySQL databases using PDO.
This is a short tutorial on how to get a list of all MySQL databases using PHP's PDO object. The post PHP: Get a list of all MySQL databases using PDO. appeared first on This Interests Me.
View ArticleMySQL: Server sent charset (255) unknown to the client.
This is an issue that occurs because MySQL 8 changed its default charset to utfmb4. The post MySQL: Server sent charset (255) unknown to the client. appeared first on This Interests Me.
View ArticlePHP: List the indexes on a MySQL table using PDO.
This is a PHP tutorial on how to list all of the indexes that have been assigned to a MySQL table. The post PHP: List the indexes on a MySQL table using PDO. appeared first on This Interests Me.
View ArticleMySQL: Extract Year and Month from Date column.
This is a short guide on how to get the year and month from a date column in MySQL. The post MySQL: Extract Year and Month from Date column. appeared first on This Interests Me.
View ArticleCopy a MySQL table using PHP.
This is a short guide on how to copy a MySQL table using PHP. The post Copy a MySQL table using PHP. appeared first on This Interests Me.
View ArticlePHP: How to close a PDO connection to MySQL.
This is a PHP tutorial on how to close a PDO connection. The post PHP: How to close a PDO connection to MySQL. appeared first on This Interests Me.
View ArticlePHP: Export MySQL data to an Excel file.
This is a tutorial on how to export MySQL data to an Excel file using PHP. The post PHP: Export MySQL data to an Excel file. appeared first on This Interests Me.
View ArticleAdding columns to a MySQL table using PHP.
This is a tutorial on how to add columns to a MySQL table using PHP. The post Adding columns to a MySQL table using PHP. appeared first on This Interests Me.
View ArticleMySQL: SELECT all records from today using PHP.
This is a guide on how to select all MySQL records from today (or another specified day). The post MySQL: SELECT all records from today using PHP. appeared first on This Interests Me.
View ArticlePHP: Cache SQL results on file system.
This is a simple tutorial on how to use PHP to cache the results of an SQL query to the file system. The post PHP: Cache SQL results on file system. appeared first on This Interests Me.
View ArticleTutorial: Ajax search with MySQL, PHP and JQuery.
In this tutorial, I will show you how to create an Ajax search form using JQuery, PHP and MySQL. The post Tutorial: Ajax search with MySQL, PHP and JQuery. appeared first on This Interests Me.
View ArticleUsing wildcards with PHP’s PDO object & prepared statements.
This is a short PHP tutorial on how to use the wildcard character when using prepared statements with the PDO object. The post Using wildcards with PHP’s PDO object & prepared statements. appeared...
View ArticlePHP Tutorial: Reset Password form.
This is a short tutorial on how to create a simple Reset Password form with PHP and MySQL. The post PHP Tutorial: Reset Password form. appeared first on This Interests Me.
View ArticleWAMP phpMyAdmin username and password.
Having trouble logging into a new install of phpMyAdmin? This article should save you some time and confusion! The post WAMP phpMyAdmin username and password. appeared first on This Interests Me.
View ArticlePDO: Get the ID of the last inserted row.
This is a short guide on how to get the ID of the last inserted row using PDO's lastInsertId method. The post PDO: Get the ID of the last inserted row. appeared first on This Interests Me.
View ArticleMySQL: INT(11) vs TINYINT(1) – What do the numbers in brackets mean?
When it comes to columns such as INT (11) and TINYINT (3), the number in brackets isn't actually that important. The post MySQL: INT(11) vs TINYINT(1) – What do the numbers in brackets mean? appeared...
View ArticleCall to undefined function mysql_connect()
If you are encountering this undefined error, then it means that you are trying to use the old mysql_* functions in PHP 7. The post Call to undefined function mysql_connect() appeared first on This...
View Article