Using MySQL transactions with PHP
The following is an example of using the transactional support in MySQL. Let’s assume we have two tables, USERTBL and EMAILTBL. Let’s consider the innodb ... read more
In this category you will find experiments, plugins and articles related to web development and programming. Here we present some useful ideas and inspiration for solving problems and tackling challenges around web development.
The following is an example of using the transactional support in MySQL. Let’s assume we have two tables, USERTBL and EMAILTBL. Let’s consider the innodb ... read more
Heres a list of actions you should do in order to get PHP + MySQL working with UTF-8: 1. Database: CREATE DATABASE db_name CHARACTER SET utf8 DEFAULT CHARACTER SET u ... read more
By Mary Lou Comments Off
Here is some very useful javascript for detecting the browser that is accessing a page: ... read more
Here is a simple PHP function that returns the exact age of a person given his/her birthdate: function age($month, $day, $year){ $y = gmstrftime("%Y"); $m = gmstrfti ... read more
Developing web applications for mobile phones sometimes brings the need to just create separate content for different devices. Some time ago I had to create a web ... read more